Changes between Version 3 and Version 4 of Fuchsia
- Timestamp:
- Jun 28, 2018, 12:55:57 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Fuchsia
v3 v4 7 7 == Building == 8 8 9 Create a CMake toolchain file , similar to the following:9 Create a CMake toolchain file named `x86_64-fuchsia.toolchain.cmake`, similar to the following: 10 10 11 11 {{{ … … 17 17 set(CMAKE_C_COMPILER /path/to/bin/clang) 18 18 set(CMAKE_CXX_COMPILER /path/to/bin/clang++) 19 set(CMAKE_AR /path/to/bin/llvm-ar CACHE FILEPATH "Archiver") 19 20 }}} 20 21