2015-08-17 11:37:30 +02:00
|
|
|
set(CMAKE_CROSSCOMPILING 1)
|
|
|
|
|
|
|
|
try_run(run_result compile_result
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
2016-07-09 11:21:54 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/simple_src_exiterror.cxx
|
2015-08-17 11:37:30 +02:00
|
|
|
RUN_OUTPUT_VARIABLE run_output)
|
|
|
|
|
|
|
|
message(STATUS "run_output: ${run_output}")
|
|
|
|
message(STATUS "run_result: ${run_result}")
|
|
|
|
|
|
|
|
set(CMAKE_CROSSCOMPILING_EMULATOR ${CMAKE_CROSSCOMPILING_EMULATOR}
|
|
|
|
--flag
|
|
|
|
"multi arg")
|
|
|
|
try_run(run_result compile_result
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
2016-07-09 11:21:54 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/simple_src_exiterror.cxx
|
2015-08-17 11:37:30 +02:00
|
|
|
RUN_OUTPUT_VARIABLE run_output)
|
|
|
|
message(STATUS "Emulator with arguments run_output: ${run_output}")
|