Skip to content

Commit

Permalink
Merge pull request #3 from ForDrink/master
Browse files Browse the repository at this point in the history
Kill the CMake Error -- clang/clang++  is not a full path and was not…
  • Loading branch information
cristeab committed May 30, 2015
2 parents 86dc085 + 385db49 commit 9340078
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toolchain/iOS.cmake
Expand Up @@ -47,8 +47,8 @@ endif (CMAKE_UNAME)

# Force the compilers to gcc for iOS
include (CMakeForceCompiler)
CMAKE_FORCE_C_COMPILER (clang Apple)
CMAKE_FORCE_CXX_COMPILER (clang++ Apple)
CMAKE_FORCE_C_COMPILER (/usr/bin/gcc Apple)
CMAKE_FORCE_CXX_COMPILER (/usr/bin/g++ Apple)
set(CMAKE_AR ar CACHE FILEPATH "" FORCE)

# Skip the platform compiler checks for cross compiling
Expand Down

0 comments on commit 9340078

Please sign in to comment.