summaryrefslogtreecommitdiff
path: root/test/scudo/lit.cfg
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2017-03-17 21:56:09 +0000
committerEric Christopher <echristo@gmail.com>2017-03-17 21:56:09 +0000
commit97e140242d3085562afa1340578d5f531a82ad69 (patch)
tree01b83b21c101526f8f7a2bfe9d76b0cdc0d47284 /test/scudo/lit.cfg
parent55008eb10a1265ceff6252916850d451467451fd (diff)
parent708f1d628eae3fabb0f28c8469e73b3b57cdea0a (diff)
downloadcompiler-rt-97e140242d3085562afa1340578d5f531a82ad69.tar.gz
Updating branches/google/testing to r297704
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/branches/google/testing@298145 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/scudo/lit.cfg')
-rw-r--r--test/scudo/lit.cfg10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/scudo/lit.cfg b/test/scudo/lit.cfg
index 4eff2ce21..adf16f57b 100644
--- a/test/scudo/lit.cfg
+++ b/test/scudo/lit.cfg
@@ -19,14 +19,14 @@ config.suffixes = ['.c', '.cc', '.cpp']
# C flags.
c_flags = ([config.target_cflags] +
["-std=c++11",
- "-lstdc++",
- "-lrt",
- "-latomic",
- "-ldl",
"-pthread",
"-fPIE",
"-pie",
- "-O0"])
+ "-O0",
+ "-UNDEBUG",
+ "-ldl",
+ "-lrt",
+ "-Wl,--gc-sections"])
def build_invocation(compile_flags):
return " " + " ".join([config.clang] + compile_flags) + " "