mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-25 14:32:53 +00:00
Rules for win32 ld shouldn't fire when cross-compiling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112954 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
850fcd4705
commit
41d0a7705b
@ -972,7 +972,14 @@ LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
|
||||
endif
|
||||
|
||||
# GNU ld Win32 accepts .DEF files that contain "DATA" entries.
|
||||
# This doesn't work when cross-compiling, though.
|
||||
ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
|
||||
ifneq ($(LLVM_CROSS_COMPILING),1)
|
||||
HAVE_WIN32_GNU_LD=1
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(HAVE_WIN32_GNU_LD),1)
|
||||
NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
|
||||
|
||||
# LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
|
||||
|
Loading…
Reference in New Issue
Block a user