diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-05-02 20:20:25 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-05-02 20:20:25 +0000 |
commit | 20ec2186c190f753e62e2f2adca00742398e37ba (patch) | |
tree | 43e396f3e778f521da8042dfb958ee9b1dce79b1 /stp | |
parent | f988120aabcf64227429e37c2c1f7e7704a9c616 (diff) | |
download | klee-20ec2186c190f753e62e2f2adca00742398e37ba.tar.gz |
Scatter -Wno-deprecated about to suppress warnings about ext/hash* uses, I don't
feel like fixing this the right way right now. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@102875 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'stp')
-rw-r--r-- | stp/AST/Makefile | 3 | ||||
-rw-r--r-- | stp/bitvec/Makefile | 3 | ||||
-rw-r--r-- | stp/c_interface/Makefile | 3 | ||||
-rw-r--r-- | stp/sat/Makefile | 3 | ||||
-rw-r--r-- | stp/simplifier/Makefile | 3 |
5 files changed, 15 insertions, 0 deletions
diff --git a/stp/AST/Makefile b/stp/AST/Makefile index 66a0472c..c3b54672 100644 --- a/stp/AST/Makefile +++ b/stp/AST/Makefile @@ -14,3 +14,6 @@ DONT_BUILD_RELINKED=1 BUILD_ARCHIVE=1 include $(LEVEL)/Makefile.common + +# HACK: Force -Wno-deprecated for ext container use. +CXX.Flags += -Wno-deprecated diff --git a/stp/bitvec/Makefile b/stp/bitvec/Makefile index 959d33cc..2652be1d 100644 --- a/stp/bitvec/Makefile +++ b/stp/bitvec/Makefile @@ -14,3 +14,6 @@ DONT_BUILD_RELINKED=1 BUILD_ARCHIVE=1 include $(LEVEL)/Makefile.common + +# HACK: Force -Wno-deprecated for ext container use. +CXX.Flags += -Wno-deprecated diff --git a/stp/c_interface/Makefile b/stp/c_interface/Makefile index 3082f715..29b9006b 100644 --- a/stp/c_interface/Makefile +++ b/stp/c_interface/Makefile @@ -14,3 +14,6 @@ DONT_BUILD_RELINKED=1 BUILD_ARCHIVE=1 include $(LEVEL)/Makefile.common + +# HACK: Force -Wno-deprecated for ext container use. +CXX.Flags += -Wno-deprecated diff --git a/stp/sat/Makefile b/stp/sat/Makefile index 074cb8af..25bb867f 100644 --- a/stp/sat/Makefile +++ b/stp/sat/Makefile @@ -14,3 +14,6 @@ DONT_BUILD_RELINKED=1 BUILD_ARCHIVE=1 include $(LEVEL)/Makefile.common + +# HACK: Force -Wno-deprecated for ext container use. +CXX.Flags += -Wno-deprecated diff --git a/stp/simplifier/Makefile b/stp/simplifier/Makefile index fb6be7e1..7aeb3ffc 100644 --- a/stp/simplifier/Makefile +++ b/stp/simplifier/Makefile @@ -14,3 +14,6 @@ DONT_BUILD_RELINKED=1 BUILD_ARCHIVE=1 include $(LEVEL)/Makefile.common + +# HACK: Force -Wno-deprecated for ext container use. +CXX.Flags += -Wno-deprecated |