diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-05-09 16:35:23 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-05-09 16:35:23 +0200 |
commit | c149c6cc3077a8ca4be4959ad327055264bc854f (patch) | |
tree | c300a9d8a49edddd01955b417f6d79fcc855ae20 /compilerplugins | |
parent | 2c9d68ff56d02350eda752d699f5ba0425e06142 (diff) |
compilerplugins/clang: filter out -fsanitize=address
Change-Id: I3e78bd86c8010124a2d006f288095aac26e60797
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/Makefile-clang.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/Makefile-clang.mk b/compilerplugins/Makefile-clang.mk index 2c57f4014ad2..a5e6a151e5c6 100644 --- a/compilerplugins/Makefile-clang.mk +++ b/compilerplugins/Makefile-clang.mk @@ -11,7 +11,7 @@ CLANG_COMMA :=, # You may occassionally want to override some of these -CLANGCXX=$(filter-out -m32 -m64,$(CXX)) +CLANGCXX=$(filter-out -m32 -m64 -fsanitize=address,$(CXX)) # Compile flags ('make CLANGCXXFLAGS=-g' if you need to debug the plugin) CLANGCXXFLAGS=-O2 -Wall -Wextra -g |