diff options
author | Dinakar Dhurjati <dhurjati@cs.uiuc.edu> | 2003-10-29 20:34:13 +0000 |
---|---|---|
committer | Dinakar Dhurjati <dhurjati@cs.uiuc.edu> | 2003-10-29 20:34:13 +0000 |
commit | 79903c8115c44e2fc717ed3cf851ba07f62fe8d6 (patch) | |
tree | e2902b7aba159c227cbb7614b032af9fc8b2fe07 | |
parent | bc839b58273b4d8c39b93a11935e1ec6fc1547a4 (diff) |
Fixed LinkO, LinkP error in TOOLLINKOPTSB
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9591 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules index fb2191d4a0..bdeb028388 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -334,8 +334,8 @@ LinkP := $(Link) -O3 -L$(PROJLIBPROFILESOURCE) -L$(LLVMLIBPROFILESOURCE) $(PR # e.g. usage TOOLLINKOPTSB = -L/home/xxx/lib ifdef TOOLLINKOPTSB LinkG := $(LinkG) $(TOOLLINKOPTSB) -LinkO := $(LinkG) $(TOOLLINKOPTSB) -LinkP := $(LinkG) $(TOOLLINKOPTSB) +LinkO := $(LinkO) $(TOOLLINKOPTSB) +LinkP := $(LinkP) $(TOOLLINKOPTSB) endif # Create one .o file from a bunch of .o files... |