test/lit.cfg: Remove -nodefaultlibs for mingw32-clang.

This commit is contained in:
NAKAMURA Takumi
2011-04-20 17:01:51 +09:00
parent 4a796725e0
commit b05cdf81ba

View File

@@ -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