CheckCCompilerFlagSSP.cmake 1005 B

1234567891011121314151617181920212223242526
  1. # - Check whether the C compiler supports a given flag in the
  2. # context of a stack checking compiler option.
  3. # CHECK_C_COMPILER_FLAG_SSP(FLAG VARIABLE)
  4. #
  5. # FLAG - the compiler flag
  6. # VARIABLE - variable to store the result
  7. #
  8. # This actually calls check_c_source_compiles.
  9. # See help for CheckCSourceCompiles for a listing of variables
  10. # that can modify the build.
  11. # Copyright (c) 2006, Alexander Neundorf, <neundorf@kde.org>
  12. #
  13. # Redistribution and use is allowed according to the terms of the BSD license.
  14. # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
  15. include(CheckCSourceCompiles)
  16. function(CHECK_C_COMPILER_FLAG_SSP _FLAG _RESULT)
  17. set(SAFE_CMAKE_REQUIRED_DEFINITIONS "${CMAKE_REQUIRED_DEFINITIONS}")
  18. set(CMAKE_REQUIRED_DEFINITIONS "${_FLAG}")
  19. check_c_source_compiles("int main(int argc, char **argv) { char buffer[256]; return buffer[argc]=0;}" ${_RESULT})
  20. set(CMAKE_REQUIRED_DEFINITIONS "${SAFE_CMAKE_REQUIRED_DEFINITIONS}")
  21. endfunction(CHECK_C_COMPILER_FLAG_SSP)