From 7d26948662d222be28bd6be509c40f8aff954da5 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Fri, 2 Oct 2009 19:36:31 +0000 Subject: MingW build fixes - MingW needs -lpsapi (in ${LIBS}) linked after -lLLVMSystem. Noticed by Ronald Pijnacker! - Some parts of the System library must be build with exceptions on windows. Based on a patch by Jay Foad! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83251 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Makefile.unittest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unittests/Makefile.unittest') diff --git a/unittests/Makefile.unittest b/unittests/Makefile.unittest index 214a1e865e..e09c08f208 100644 --- a/unittests/Makefile.unittest +++ b/unittests/Makefile.unittest @@ -25,7 +25,7 @@ LIBS += -lGoogleTest -lUnitTestMain $(LLVMUnitTestExe): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(Echo) Linking $(BuildMode) unit test $(TESTNAME) $(StripWarnMsg) $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \ - $(LIBS) $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) + $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS) $(Echo) ======= Finished Linking $(BuildMode) Unit test $(TESTNAME) \ $(StripWarnMsg) -- cgit v1.2.3