compilation options for cmake (on windows) for ARM target system but when I run configure it\'s starting compiler tests:
CMake Error at D:/Program Files/CMake 2.
You can skip the compiler checks by adding NONE
to your project
call:
project( NONE)
but this can have pretty far-reaching effects. For full details, run
cmake --help-command project
I'm not familiar with ARM, so this is probably not your best option here. I guess you'd be better to see if there's a way to fix the -rdynamic
flag.
It looks like this was identified as a bug which is effectively still unresolved. The comments in the bug report mention adding the following lines as a workaround (presumably before your project
call):
set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")