summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/scudo/lit.cfg3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/scudo/lit.cfg b/test/scudo/lit.cfg
index 0113bf0e7..2f6469d25 100644
--- a/test/scudo/lit.cfg
+++ b/test/scudo/lit.cfg
@@ -28,12 +28,13 @@ c_flags = ([config.target_cflags] +
"-UNDEBUG",
"-ldl",
"-Wl,--gc-sections"])
-cxx_flags = (c_flags + config.cxx_mode_flags + ["-std=c++11"])
# Android doesn't want -lrt.
if not config.android:
c_flags += ["-lrt"]
+cxx_flags = (c_flags + config.cxx_mode_flags + ["-std=c++11"])
+
def build_invocation(compile_flags):
return " " + " ".join([config.compile_wrapper, config.clang] + compile_flags) + " "