mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Search for the export map in a place that it can be found.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65552 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6b37dcdedf
commit
065d7a61e2
@ -1079,7 +1079,7 @@ LD.Flags += -Wl,-exported_symbol -Wl,_main
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
|
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
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
4
autoconf/ExportMap.map
Normal file
4
autoconf/ExportMap.map
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
global: main;
|
||||||
|
local: *;
|
||||||
|
};
|
Loading…
x
Reference in New Issue
Block a user