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 | be9911dbf01d02592f92569c16ad89ef1f09e8ed (patch) | |
tree | 22fb7da0c000bafa79aedacb922a8d2ddf44f3d4 /llvm | |
parent | ad44cd840badfca477e14b05e4acfc77a32faa0f (diff) | |
download | bcm5719-llvm-be9911dbf01d02592f92569c16ad89ef1f09e8ed.tar.gz bcm5719-llvm-be9911dbf01d02592f92569c16ad89ef1f09e8ed.zip |
Specify a list of symbols that should be exported by the library
llvm-svn: 6290
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/runtime/GCCLibraries/crtend/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/runtime/GCCLibraries/crtend/Makefile b/llvm/runtime/GCCLibraries/crtend/Makefile index 049e35c8631..7fa16aab863 100644 --- a/llvm/runtime/GCCLibraries/crtend/Makefile +++ b/llvm/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) |