diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-09-29 22:23:19 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-09-29 22:23:19 +0000 |
commit | 0d62b9a9a8b46caebfbe560368dcae7e0134a3a0 (patch) | |
tree | a653909b80e332e2742cf4e17e095e2d6b2f70d4 | |
parent | b72f73f13a88851327581323ce116e882e8745d2 (diff) |
Disable MinGW & shared because it never worked.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_28@115093 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.rules b/Makefile.rules index 2e18c66e2b..9cff1053d0 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -941,6 +941,11 @@ ifdef EXPORTED_SYMBOL_FILE # 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 |