From 12520cdab483a92a3137cfbf8ac34eddfc9345d6 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Fri, 20 Sep 2002 16:15:57 +0000 Subject: Fix link error for profile version. Also, build Burg differently for different architectures. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3862 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile.common | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile.common') diff --git a/Makefile.common b/Makefile.common index 5151135a55..40818d82f9 100644 --- a/Makefile.common +++ b/Makefile.common @@ -126,7 +126,7 @@ endif # Special tools used while building the LLVM tree. Burg is built as part of the # utils directory. # -BURG := $(LEVEL)/utils/Burg/burg +BURG := $(LEVEL)/utils/Burg/burg.$(UNAME) RunBurg := $(BURG) $(BURG_OPTS) @@ -167,7 +167,7 @@ Link := $(CXX) endif LinkG := $(Link) -g -L $(LIBDEBUG) $(STRIP) LinkO := $(Link) -O3 -L $(LIBRELEASE) -LinkP := $(LinkO) $(PROFILE) +LinkP := $(Link) -O3 -L $(LIBPROFILE) $(PROFILE) # Create one .o file from a bunch of .o files... Relink = ld -r @@ -358,9 +358,9 @@ ifndef ENABLE_OPTIMIZED TOOLEXENAMES := $(TOOLEXENAME_G) else ifdef ENABLE_PROFILING - TOOLEXENAMES := $(TOOLEXENAME_O) - else TOOLEXENAMES := $(TOOLEXENAME_P) + else + TOOLEXENAMES := $(TOOLEXENAME_O) endif endif -- cgit v1.2.3