[llvm-commits] [llvm] r65552 - in /llvm/trunk: Makefile.rules autoconf/ExportMap.map
Chris Lattner
sabre at nondot.org
Thu Feb 26 10:37:59 PST 2009
Author: lattner
Date: Thu Feb 26 12:37:59 2009
New Revision: 65552
URL: http://llvm.org/viewvc/llvm-project?rev=65552&view=rev
Log:
Search for the export map in a place that it can be found.
Added:
llvm/trunk/autoconf/ExportMap.map
Modified:
llvm/trunk/Makefile.rules
Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=65552&r1=65551&r2=65552&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Thu Feb 26 12:37:59 2009
@@ -1079,7 +1079,7 @@
endif
ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
-LD.Flags += -Wl,--version-script=Driver.map
+LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/ExportMap.map
endif
endif
Added: llvm/trunk/autoconf/ExportMap.map
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/ExportMap.map?rev=65552&view=auto
==============================================================================
--- llvm/trunk/autoconf/ExportMap.map (added)
+++ llvm/trunk/autoconf/ExportMap.map Thu Feb 26 12:37:59 2009
@@ -0,0 +1,4 @@
+{
+ global: main;
+ local: *;
+};
More information about the llvm-commits
mailing list