summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Android/check_binary.cmake
blob: 1d1b01a5d99480e7cf8ca10b983ebd0d8cccadc4 (plain)
1
2
3
4
5
6
7
8
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()