[polly] r222874 - autoconf: Move libraries later to ensure that all symbols are found

Tobias Grosser tobias at grosser.es
Thu Nov 27 02:14:28 PST 2014


Author: grosser
Date: Thu Nov 27 04:14:27 2014
New Revision: 222874

URL: http://llvm.org/viewvc/llvm-project?rev=222874&view=rev
Log:
autoconf: Move libraries later to ensure that all symbols are found

This fixes llvm.org/PR19540

Modified:
    polly/trunk/lib/Makefile

Modified: polly/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Makefile?rev=222874&r1=222873&r2=222874&view=diff
==============================================================================
--- polly/trunk/lib/Makefile (original)
+++ polly/trunk/lib/Makefile Thu Nov 27 04:14:27 2014
@@ -13,8 +13,6 @@ LOADABLE_MODULE = 1
 CPP.Flags += $(POLLY_INC)
 LD.Flags += $(POLLY_LD) $(POLLY_LIB)
 
-LIBS += $(POLLY_LD) $(POLLY_LIB)
-
 include $(LEVEL)/Makefile.config
 
 # Enable optional source files
@@ -73,3 +71,5 @@ SOURCES= Polly.cpp \
 # Include Makefile.common so we know what to do.
 #
 include $(LEVEL)/Makefile.common
+
+LIBS += $(POLLY_LD) $(POLLY_LIB)





More information about the llvm-commits mailing list