Make use of the LLVMGCCStdCXXLibDir variable to link objects

llvm-svn: 18548
This commit is contained in:
Reid Spencer 2004-12-05 19:15:06 +00:00
parent 1014afc7ea
commit 9f1cf33a54
1 changed files with 3 additions and 3 deletions

View File

@ -47,18 +47,18 @@ $(ObjDir)/comp_main.bc: $(MainObj)
$(Echo) Linking $(notdir $@) component... $(Echo) Linking $(notdir $@) component...
$(Verb) $(GCCLD) -link-as-library \ $(Verb) $(GCCLD) -link-as-library \
-internalize-public-api-file=$(BUILD_SRC_DIR)/comp_main.lst \ -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_main.lst \
$(MainObj) -o $@ \ $(MainObj) -o $@ -L$(LLVMGCCStdCXXLibDir)
# Generic exception handling support runtime. # Generic exception handling support runtime.
$(ObjDir)/comp_genericeh.bc: $(GenericEHObj) $(ObjDir)/comp_genericeh.bc: $(GenericEHObj)
$(Echo) Linking $(notdir $@) component... $(Echo) Linking $(notdir $@) component...
$(Verb) $(GCCLD) -link-as-library \ $(Verb) $(GCCLD) -link-as-library \
-internalize-public-api-file=$(BUILD_SRC_DIR)/comp_genericeh.lst \ -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_genericeh.lst \
$(GenericEHObj) -o $@ $(GenericEHObj) -o $@ -L$(LLVMGCCStdCXXLibDir)
# setjmp/longjmp exception handling support runtime. # setjmp/longjmp exception handling support runtime.
$(ObjDir)/comp_sjljeh.bc: $(SJLJEHObj) $(ObjDir)/comp_sjljeh.bc: $(SJLJEHObj)
$(Echo) Linking $(notdir $@) component... $(Echo) Linking $(notdir $@) component...
$(Verb) $(GCCLD) -link-as-library \ $(Verb) $(GCCLD) -link-as-library \
-internalize-public-api-file=$(BUILD_SRC_DIR)/comp_sjljeh.lst \ -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_sjljeh.lst \
$(SJLJEHObj) -o $@ $(SJLJEHObj) -o $@ -L$(LLVMGCCStdCXXLibDir)