diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-20 15:41:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-20 15:41:57 +0000 |
commit | e3ba95e6b7dddf1160611fd7cd3b432e9366cb34 (patch) | |
tree | b2f53c380acc77ca1f1a38001454c9f1bcccffd9 /Makefile.common | |
parent | 1c6d6c996adcc396d6a5f7cf5a2c20f2841d35a2 (diff) |
Fix problem building optmized build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6798 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 4787677097..9a69fc4c7a 100644 --- a/Makefile.common +++ b/Makefile.common @@ -465,7 +465,7 @@ LLVM_LIBS_OPTIONS_O := $(patsubst %.o, $(LLVMLIBRELEASESOURCE)/%.o,$(LLVM_LIBS_O 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 |