[llvm-commits] [llvm] r115487 - /llvm/trunk/Makefile.rules

NAKAMURA Takumi geek4civic at gmail.com
Sun Oct 3 19:32:21 PDT 2010


Author: chapuni
Date: Sun Oct  3 21:32:21 2010
New Revision: 115487

URL: http://llvm.org/viewvc/llvm-project?rev=115487&view=rev
Log:
Makefile.rules: Fix breakage on cygming --enable-shared.

This has been applied already in r115093 on release_28.

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=115487&r1=115486&r2=115487&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Sun Oct  3 21:32:21 2010
@@ -945,6 +945,11 @@
 # First, set up the native export file, which may differ from the source
 # export file.
 
+# The option --version-script is not effective on GNU ld win32.
+ifneq (,$(filter $(HOST_OS),Cygwin MingW))
+  HAVE_LINK_VERSION_SCRIPT := 0
+endif
+
 ifeq ($(HOST_OS),Darwin)
 # Darwin convention prefixes symbols with underscores.
 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed





More information about the llvm-commits mailing list