You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
319 B
9 lines
319 B
6 years ago
|
if(NOT EXISTS "${file}")
|
||
|
message(FATAL_ERROR "Missing file:\n ${file}")
|
||
|
endif()
|
||
|
execute_process(COMMAND "${objdump}" -p ${file} OUTPUT_VARIABLE out)
|
||
|
if(out MATCHES "NEEDED[^\n]*stdc\\+\\+")
|
||
|
string(REPLACE "\n" "\n " out " ${out}")
|
||
|
message(FATAL_ERROR "File:\n ${file}\ndepends on libstdc++:\n${out}")
|
||
|
endif()
|