From b05cdf81bacd04e228ff6c0e568a8b5896b850dc Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 20 Apr 2011 17:01:51 +0900 Subject: [PATCH] test/lit.cfg: Remove -nodefaultlibs for mingw32-clang. --- test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lit.cfg b/test/lit.cfg index c1163755..9962159e 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -155,6 +155,6 @@ if sys.platform == 'linux2': config.test_format = LibcxxTestFormat(cxx_under_test, cpp_flags = ['-nostdinc++'] + compile_flags + include_paths, - ld_flags = ['-nodefaultlibs'] + library_paths + ['-lc++'] + libraries) + ld_flags = [''] + library_paths + ['-lc++'] + libraries) config.target_triple = None