diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-05-19 17:18:01 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-06-11 12:41:16 (GMT) |
commit | 2d9ec1dadfdd10043a98d425abb25d0aef117699 (patch) | |
tree | 863ad302599233aa97f85f845cb59cf75a69afdf /Modules/Platform/QNX.cmake | |
parent | a2021e578c6b6c944b1d1442cfb76c3f9543c839 (diff) | |
download | CMake-2d9ec1dadfdd10043a98d425abb25d0aef117699.zip CMake-2d9ec1dadfdd10043a98d425abb25d0aef117699.tar.gz CMake-2d9ec1dadfdd10043a98d425abb25d0aef117699.tar.bz2 |
Add compiler target compile options.
For clang, this allows passing -target <triple> to the compiler, and
for qcc, -V<arch> using toolchain files containing something like
set(triple arm-linux-gnueabihf)
set(CMAKE_C_COMPILER "/usr/bin/clang")
set(CMAKE_C_COMPILER_TARGET ${triple})
set(CMAKE_CXX_COMPILER "/usr/bin/clang++")
set(CMAKE_CXX_COMPILER_TARGET ${triple})
or
set(arch gcc_ntoarmv7le)
set(CMAKE_C_COMPILER /opt/qnx650/host/linux/x86/usr/bin/qcc)
set(CMAKE_C_COMPILER_TARGET ${arch})
set(CMAKE_CXX_COMPILER /opt/qnx650/host/linux/x86/usr/bin/QCC)
set(CMAKE_CXX_COMPILER_TARGET ${arch})
Both clang and qcc are inherently cross compiler( driver)s.
Diffstat (limited to 'Modules/Platform/QNX.cmake')
-rw-r--r-- | Modules/Platform/QNX.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/Platform/QNX.cmake b/Modules/Platform/QNX.cmake index 2598411..315f721 100644 --- a/Modules/Platform/QNX.cmake +++ b/Modules/Platform/QNX.cmake @@ -13,6 +13,9 @@ set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP ":") set(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG "-Wl,-rpath-link,") set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-soname,") set(CMAKE_EXE_EXPORTS_C_FLAG "-Wl,--export-dynamic") +# http://www.qnx.com/developers/docs/6.4.0/neutrino/utilities/q/qcc.html#examples +set(CMAKE_C_COMPILE_OPTION_TARGET "-V") +set(CMAKE_CXX_COMPILE_OPTION_TARGET "-V") # Shared libraries with no builtin soname may not be linked safely by # specifying the file path. |