[llvm-commits] [dragonegg] r103460 - /dragonegg/trunk/Makefile
Duncan Sands
baldrick at free.fr
Tue May 11 00:27:11 PDT 2010
Author: baldrick
Date: Tue May 11 02:27:11 2010
New Revision: 103460
URL: http://llvm.org/viewvc/llvm-project?rev=103460&view=rev
Log:
Use an absolute path for the linker version script, hopefully
fixing the buildbots.
Modified:
dragonegg/trunk/Makefile
Modified: dragonegg/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/Makefile?rev=103460&r1=103459&r2=103460&view=diff
==============================================================================
--- dragonegg/trunk/Makefile (original)
+++ dragonegg/trunk/Makefile Tue May 11 02:27:11 2010
@@ -23,7 +23,7 @@
ifeq ($(shell uname),Darwin)
LOADABLE_MODULE_OPTIONS=-bundle -undefined dynamic_lookup
else
-LOADABLE_MODULE_OPTIONS=-shared -Wl,--version-script=exports.map
+LOADABLE_MODULE_OPTIONS=-shared -Wl,--version-script=$(SRC_DIR)/exports.map
endif
GCC_PLUGIN_DIR:=$(shell $(GCC) -print-file-name=plugin)
More information about the llvm-commits
mailing list