This was never updated for the project makefile changes
authorChris Lattner <sabre@nondot.org>
Tue, 18 Oct 2005 18:50:26 +0000 (18:50 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 18 Oct 2005 18:50:26 +0000 (18:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23790 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/GCCLibraries/crtend/Makefile
runtime/libprofile/Makefile

index b6b624650ca78d0d21f484dfc4c4781eceab71ad..32077b292d10f75a7644bb9a29d825c818b03c4d 100644 (file)
@@ -47,19 +47,19 @@ SJLJEHObj    := $(ObjDir)/SJLJ-Exception.bc
 $(ObjDir)/comp_main.bc: $(MainObj)
        $(Echo) Linking $(notdir $@) component...
        $(Verb) $(GCCLD) -link-as-library \
-       -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_main.lst \
+       -internalize-public-api-file=$(PROJ_SRC_DIR)/comp_main.lst \
        $(MainObj) -o $@
 
 # 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 \
+       -internalize-public-api-file=$(PROJ_SRC_DIR)/comp_genericeh.lst \
        $(GenericEHObj) -o $@ 
 
 # 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 \
+       -internalize-public-api-file=$(PROJ_SRC_DIR)/comp_sjljeh.lst \
        $(SJLJEHObj) -o $@
index d90771d026bf6dc57552ecd4cb753df85438fddb..e88fcdc34eb63b0e2c04c6f26bbe0b4d5c19a32d 100644 (file)
@@ -13,7 +13,7 @@ SHARED_LIBRARY = 1
 LOADABLE_MODULE = 1
 LIBRARYNAME = profile_rt
 EXTRA_DIST = exported_symbols.lst
-EXPORTED_SYMBOL_FILE = $(BUILD_SRC_DIR)/exported_symbols.lst
+EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/exported_symbols.lst
 BYTECODE_DESTINATION = $(CFERuntimeLibDir)
 
 include $(LEVEL)/Makefile.common