Commit Graph

17 Commits

Author SHA1 Message Date
6d56fe50e7 Removed optimization flags.
Due optimizing the code is optional for using the sanitizers, the user should
set an optimisation level by his choice on his own.
2016-04-19 18:37:43 +02:00
f566e2b9ec Added checks to avoid bad sanitizer combinations.
Some sanitizers are not compatible with other sanitizers. Added some checks to
avoid these combinations at configuration time.
2016-04-12 21:04:21 +02:00
6975d64d6b Flags will be searched only once per compiler.
If a compiler does not support sanitizing, it will not be checked a second time.
2016-04-06 19:39:47 +02:00
de1a134183 Check if MemorySanitizer is used on x86_64 Linux.
According to the MemorySanitizer documentation, it is only compatible with 64bit
Linux at the moment.
2016-04-06 19:32:45 +02:00
4d96db375f Check if ThreadSanitizer is used on x86_64 Linux.
According to the ThreadSanitizer documentation, it is only compatible with 64bit
Linux at the moment.
2016-04-06 19:29:46 +02:00
03db9d9383 Restructured all sanitizer modules. 2016-04-06 19:15:25 +02:00
b492553f61 New central module FindSanitizers.cmake.
* Added a new module FindSanitizers with new function add_sanitizers to combine
  all sanitizers in one function instead of adding each one by one.
* Code of FindASan.cmake was outdourced into helper functions, so that the code
  may be used by other sanitizer modules, too.
* AddressSanitizer will be used with -O1 now to get a better performance.
2016-04-06 18:48:16 +02:00
925961bb5e Bugfix in CMake cache docs. 2016-03-08 04:42:43 +01:00
88e75c6b03 Enabled debug symbols for ASan. 2016-03-08 04:18:39 +01:00
584f137e70 Reworked FindASan.cmake.
* removed build type ASAN. Targets should define ASan usage by sanitize_address
  function
* compiler flags will be searched by compiler instead of per language
* FindASan warns, if a target can't be sanitized because of incompatible
  compilers
* added some helper functions
2016-03-08 03:52:36 +01:00
c96a15b46c Bugfix in FindASan.cmake 2016-02-15 05:13:36 +01:00
d81be39678 Bugfix in FindASan.cmake. 2016-01-28 19:17:07 +01:00
f62b5858ac Compile flags will now be set per-source file.
Thus C can be mixed with Fortran and the objects can be build with different
compilers, not both may support AddressSanitizer.
2016-01-28 17:41:24 +01:00
c29aa33f11 Check ASan support for all enabled compilers.
Instead of fix checking for C and CXX compilers, all enabled languages will be
tested now.
2016-01-28 17:31:31 +01:00
e39082050c Removed continue statement in FindASan.cmake
Older CMake versions are not capable of continue in foreach functions.
2015-11-19 16:38:53 +01:00
41e635c9ca Restructured code of FindASan.cmake 2015-11-19 14:14:13 +01:00
4fd453301a Moved CMake files and added a simple testcase 2015-07-07 00:31:35 +02:00