diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-29 10:24:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-29 10:24:57 +0000 |
commit | f168b7551cf0822aba65d22a0991fb4825cd8402 (patch) | |
tree | 030f2494b2aefebc3d0c3b5c0c6037ab50f0ae7f /runtime/GCCLibraries | |
parent | 53005b00bec7409097adefd63e5cae70ad0c2398 (diff) |
Build _lib_crtend.a, not crtend.a
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10260 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/GCCLibraries')
-rw-r--r-- | runtime/GCCLibraries/crtend/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/GCCLibraries/crtend/Makefile b/runtime/GCCLibraries/crtend/Makefile index a7f2c7a9d77..0984760cba4 100644 --- a/runtime/GCCLibraries/crtend/Makefile +++ b/runtime/GCCLibraries/crtend/Makefile @@ -27,14 +27,14 @@ Source := $(MainSrc) $(GenericEHSrc) $(SJLJEHSrc) $(CXXEHSrc) include $(LEVEL)/Makefile.common # CRTEND_A - The result of making 'all' - the final archive file. -CRTEND_A = $(DESTLIBBYTECODE)/crtend.a +CRTEND_A = $(DESTLIBBYTECODE)/libcrtend.a all:: $(CRTEND_A) # Installation simply requires copying the archive to it's new home. -$(LLVMGCCDIR)/bytecode-libs/crtend.a: $(CRTEND_A) +$(LLVMGCCDIR)/bytecode-libs/libcrtend.a: $(CRTEND_A) cp $< $@ -install:: $(LLVMGCCDIR)/bytecode-libs/crtend.a +install:: $(LLVMGCCDIR)/bytecode-libs/libcrtend.a # The four components described in the README @@ -42,9 +42,9 @@ Components := main genericeh sjljeh cxxeh ComponentLibs := $(Components:%=$(BUILD_OBJ_DIR)/BytecodeObj/comp_%.bc) -# We build crtend.a from the four components described in the README. +# We build libcrtend.a from the four components described in the README. $(CRTEND_A) : $(ComponentLibs) - @echo Building final crtend.a file from components + @echo Building final libcrtend.a file from components $(VERB) $(AR) $@ $(ComponentLibs) MainObj := $(BUILD_OBJ_DIR)/BytecodeObj/crtend.bc \ |