[llvm-commits] CVS: llvm/Makefile.common
John Criswell
criswell at choi.cs.uiuc.edu
Wed Jun 25 13:44:01 PDT 2003
Changes in directory llvm:
Makefile.common updated: 1.88.2.3 -> 1.88.2.4
---
Log message:
Fixed the rules for linking optimized tools.
We were orignally linking against some profile libraries, but now we link
against the optimized libraries.
---
Diffs of the changes:
Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.88.2.3 llvm/Makefile.common:1.88.2.4
--- llvm/Makefile.common:1.88.2.3 Tue Jun 24 15:36:04 2003
+++ llvm/Makefile.common Wed Jun 25 13:43:32 2003
@@ -560,7 +560,7 @@
LLVM_LIBS_OPTIONS_P := $(patsubst %.o, $(LLVMLIBPROFILESOURCE)/%.o,$(LLVM_LIBS_OPTIONS))
LIB_OPTS_G := $(LLVM_LIBS_OPTIONS_G) $(PROJ_LIBS_OPTIONS_G)
-LIB_OPTS_O := $(LLVM_LIBS_OPTIONS_O) $(PROJ_LIBS_OPTIONS_P)
+LIB_OPTS_O := $(LLVM_LIBS_OPTIONS_O) $(PROJ_LIBS_OPTIONS_O)
LIB_OPTS_P := $(LLVM_LIBS_OPTIONS_P) $(PROJ_LIBS_OPTIONS_P)
# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
More information about the llvm-commits
mailing list