diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-05 19:15:06 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-05 19:15:06 +0000 |
commit | 8bcd0502a3cad823a1521713b55d577ac0eb20f4 (patch) | |
tree | b0bde2dc9e0b60cf3a954f39fa2d01e49e81ebcd /runtime | |
parent | 4bdf1c9855f3755aae927c390df61b5bf507aa60 (diff) | |
download | external_llvm-8bcd0502a3cad823a1521713b55d577ac0eb20f4.zip external_llvm-8bcd0502a3cad823a1521713b55d577ac0eb20f4.tar.gz external_llvm-8bcd0502a3cad823a1521713b55d577ac0eb20f4.tar.bz2 |
Make use of the LLVMGCCStdCXXLibDir variable to link objects
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18548 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/GCCLibraries/crtend/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/GCCLibraries/crtend/Makefile b/runtime/GCCLibraries/crtend/Makefile index a65ddc4..be7b93e 100644 --- a/runtime/GCCLibraries/crtend/Makefile +++ b/runtime/GCCLibraries/crtend/Makefile @@ -47,18 +47,18 @@ $(ObjDir)/comp_main.bc: $(MainObj) $(Echo) Linking $(notdir $@) component... $(Verb) $(GCCLD) -link-as-library \ -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_main.lst \ - $(MainObj) -o $@ \ + $(MainObj) -o $@ -L$(LLVMGCCStdCXXLibDir) # Generic exception handling support runtime. $(ObjDir)/comp_genericeh.bc: $(GenericEHObj) $(Echo) Linking $(notdir $@) component... $(Verb) $(GCCLD) -link-as-library \ -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_genericeh.lst \ - $(GenericEHObj) -o $@ + $(GenericEHObj) -o $@ -L$(LLVMGCCStdCXXLibDir) # setjmp/longjmp exception handling support runtime. $(ObjDir)/comp_sjljeh.bc: $(SJLJEHObj) $(Echo) Linking $(notdir $@) component... $(Verb) $(GCCLD) -link-as-library \ -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_sjljeh.lst \ - $(SJLJEHObj) -o $@ + $(SJLJEHObj) -o $@ -L$(LLVMGCCStdCXXLibDir) |