diff options
author | Chris Robinson <[email protected]> | 2008-05-18 17:46:45 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-05-18 17:46:45 -0700 |
commit | dc0a3a665342632673b9d7da6f91121b3dc0b88f (patch) | |
tree | e7812dd21ee455248e9f830e8979ea0d9da9c31f /CMakeLists.txt | |
parent | fed346c285b96b4bd8c519b03ad2cb2202940b2c (diff) |
Remove -fno-strict-aliasing as the code should be safe, now
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f1c38727..363c7974 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -76,13 +76,6 @@ ELSE() "Flags used by the compiler during debug builds." FORCE) - # The mixer doesn't like GCC's strict aliasing optimizations. Make sure - # it's turned off - CHECK_C_COMPILER_FLAG(-fstrict-aliasing HAVE_STRICT_ALIASING) - IF("${HAVE_STRICT_ALIASING}") - ADD_DEFINITIONS(-fno-strict-aliasing) - ENDIF() - # Set visibility options if available IF(NOT WIN32) CHECK_C_SOURCE_COMPILES("int foo() __attribute__((destructor)); |