diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-22 19:50:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-22 19:50:30 +0000 |
commit | 61441cca45dd157a0909434487c3f6e3919a097d (patch) | |
tree | 7e37c20e18b44669be46231655b15e84005829c7 /runtime | |
parent | 2345d71853e75fd56a8ca66d40bf36eba0a9edb6 (diff) | |
download | external_llvm-61441cca45dd157a0909434487c3f6e3919a097d.zip external_llvm-61441cca45dd157a0909434487c3f6e3919a097d.tar.gz external_llvm-61441cca45dd157a0909434487c3f6e3919a097d.tar.bz2 |
Specify a list of symbols that should be exported by the library
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6290 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/GCCLibraries/crtend/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/GCCLibraries/crtend/Makefile b/runtime/GCCLibraries/crtend/Makefile index 049e35c..7fa16aa 100644 --- a/runtime/GCCLibraries/crtend/Makefile +++ b/runtime/GCCLibraries/crtend/Makefile @@ -2,6 +2,8 @@ LEVEL = ../../.. LIBNAME = crtend Source = crtend.c listend.ll +EXPORTED_SYMBOL_LIST = __main,llvm.global_ctors,llvm.global_dtors + include ../Makefile.libs install:: $(DESTLIBNAME) |