################################################################################ # # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at # https://www.apache.org/licenses/LICENSE-2.0. # # See the NOTICE file distributed with this work for additional # information regarding copyright ownership. # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # SPDX-License-Identifier: Apache-2.0 ################################################################################ # CMake toolchain to build libnd4j for iOS armv7. Sample usage: # # cmake -DCMAKE_TOOLCHAIN_FILE=ios-armv7.cmake -DCMAKE_INSTALL_PREFIX=.. # # If you really need to use libnd4j on a CPU with no FPU, replace "libs/armeabi-v7a" by "libs/armeabi" and # "-march=armv7-a with "-march=armv5te -mtune=xscale -msoft-float" set(CMAKE_SYSTEM_NAME UnixPaths) set(CMAKE_SYSTEM_PROCESSOR armv) set(IOS TRUE) set(CFLAGS, "-miphoneos-version-min=6.0 -arch armv7") set(CMAKE_C_COMPILER "clang-omp") set(CMAKE_CXX_COMPILER "clang-omp") # set(CMAKE_C_LINK_EXECUTABLE " -o ") # set(CMAKE_CXX_LINK_EXECUTABLE " -o ") set(CMAKE_C_LINK_EXECUTABLE "libtool -static -o -L$ENV{IOS_SDK}/usr/lib/ -syslibroot $ENV{IOS_SDK}") set(CMAKE_CXX_LINK_EXECUTABLE "libtool -static -o -L$ENV{IOS_SDK}/usr/lib/ -syslibroot $ENV{IOS_SDK}") set(CMAKE_C_CREATE_STATIC_LIBRARY "libtool -Wl,--no-undefined -z text -o -L$ENV{ANDROID_ROOT}/usr/lib/ --sysroot=$ENV{ANDROID_ROOT}") # set(CMAKE_CXX_CREATE_STATIC_LIBRARY "libtool -Wl,--no-undefined -z text -o -L$ENV{IOS_ROOT}/usr/lib/ --sysroot=$ENV{IOS_ROOT}") set(CMAKE_CXX_CREATE_STATIC_LIBRARY "libtool -o -syslibroot $ENV{IOS_SDK} -L$ENV{IOS_SDK}/usr/lib/") add_definitions("-DIOS -miphoneos-version-min=6.0 -arch armv7 -isysroot $ENV{IOS_SDK} -I/usr/local/Cellar/llvm/4.0.0/include/c++/v1 -I/usr/local/Cellar/llvm/4.0.0/lib/clang/4.0.0/include -fPIC -ffunction-sections -funwind-tables -fstack-protector -fomit-frame-pointer -fstrict-aliasing") # include_directories("$ENV{ANDROID_CPP}/include/" "$ENV{ANDROID_CPP}/libs/armeabi-v7a/include/" "$ENV{ANDROID_ROOT}/usr/include/")