MacroCheckCCompilerFlagSSP.cmake 1013 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 the check_c_source_compiles macro.
  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. MACRO (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. ENDMACRO (CHECK_C_COMPILER_FLAG_SSP)