[llvm-branch-commits] [llvm-branch] r115093 - /llvm/branches/release_28/Makefile.rules

Bill Wendling isanbard at gmail.com
Wed Sep 29 15:23:19 PDT 2010


Author: void
Date: Wed Sep 29 17:23:19 2010
New Revision: 115093

URL: http://llvm.org/viewvc/llvm-project?rev=115093&view=rev
Log:
Disable MinGW & shared because it never worked.

Modified:
    llvm/branches/release_28/Makefile.rules

Modified: llvm/branches/release_28/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_28/Makefile.rules?rev=115093&r1=115092&r2=115093&view=diff
==============================================================================
--- llvm/branches/release_28/Makefile.rules (original)
+++ llvm/branches/release_28/Makefile.rules Wed Sep 29 17:23:19 2010
@@ -941,6 +941,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-branch-commits mailing list