Skip to content
Permalink
Browse files
Merge pull request #6174 from gwicks/android-ndkupdate
Android: Fix build on NDK r16b2
  • Loading branch information
JosJuice committed Nov 7, 2017
2 parents 835eff1 + c2dcb97 commit 9e25120
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
@@ -709,10 +709,12 @@ else()
include_directories(Externals/SOIL)
endif()

find_library(ICONV_LIBRARIES NAMES iconv libiconv libiconv-2 c)
find_path(ICONV_INCLUDE_DIR NAMES iconv.h)
if (NOT ANDROID)
find_library(ICONV_LIBRARIES NAMES iconv libiconv libiconv-2 c)
find_path(ICONV_INCLUDE_DIR NAMES iconv.h)
endif()

if (ICONV_LIBRARIES AND ICONV_INCLUDE_DIR)
if (NOT ANDROID AND ICONV_LIBRARIES AND ICONV_INCLUDE_DIR)
mark_as_advanced(ICONV_INCLUDE_DIR ICONV_LIBRARIES)
else()
message(STATUS "Using static iconv from Externals")
@@ -4,7 +4,7 @@

#pragma once

#if __has_include_next(<optional>)
#if __cplusplus >= 201703L && __has_include_next(<optional>)
#include_next <optional>
#else
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
@@ -4,7 +4,7 @@

#pragma once

#if __has_include_next(<variant>)
#if __cplusplus >= 201703L && __has_include_next(<variant>)
#include_next <variant>
#else
// MPark.Variant

0 comments on commit 9e25120

Please sign in to comment.