target.cmake 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # SPDX-License-Identifier: Apache-2.0
  2. # Configures CMake for using GCC
  3. find_program(CMAKE_C_COMPILER gcc)
  4. if(CONFIG_CPLUSPLUS)
  5. set(cplusplus_compiler g++)
  6. else()
  7. if(EXISTS g++)
  8. set(cplusplus_compiler g++)
  9. else()
  10. # When the toolchain doesn't support C++, and we aren't building
  11. # with C++ support just set it to something so CMake doesn't
  12. # crash, it won't actually be called
  13. set(cplusplus_compiler ${CMAKE_C_COMPILER})
  14. endif()
  15. endif()
  16. find_program(CMAKE_CXX_COMPILER ${cplusplus_compiler} CACHE INTERNAL " " FORCE)
  17. set(NOSTDINC "")
  18. # Note that NOSYSDEF_CFLAG may be an empty string, and
  19. # set_ifndef() does not work with empty string.
  20. if(NOT DEFINED NOSYSDEF_CFLAG)
  21. set(NOSYSDEF_CFLAG -undef)
  22. endif()
  23. foreach(file_name include/stddef.h)
  24. execute_process(
  25. COMMAND ${CMAKE_C_COMPILER} --print-file-name=${file_name}
  26. OUTPUT_VARIABLE _OUTPUT
  27. )
  28. get_filename_component(_OUTPUT "${_OUTPUT}" DIRECTORY)
  29. string(REGEX REPLACE "\n" "" _OUTPUT "${_OUTPUT}")
  30. list(APPEND NOSTDINC ${_OUTPUT})
  31. endforeach()