diff options
author | Dinakar Dhurjati <dhurjati@cs.uiuc.edu> | 2003-10-29 14:28:35 +0000 |
---|---|---|
committer | Dinakar Dhurjati <dhurjati@cs.uiuc.edu> | 2003-10-29 14:28:35 +0000 |
commit | 87ea8aa5e73e61454e9400642cff0c3a3564fba7 (patch) | |
tree | 8534fc4cde72c57466e91a135c701b3bb63a5125 /Makefile.rules | |
parent | 32547fe715601739bd588e94013052c190a45c44 (diff) |
Added TOOLLINKOPTSB to pass options to the linker (e.g. adding search
path for external libraries).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9582 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r-- | Makefile.rules | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile.rules b/Makefile.rules index 65599cc795..fb2191d4a0 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -328,6 +328,16 @@ LinkG := $(Link) -g -L$(PROJLIBDEBUGSOURCE) -L$(LLVMLIBDEBUGSOURCE) $(STRIP) LinkO := $(Link) -O3 -L$(PROJLIBRELEASESOURCE) -L$(LLVMLIBRELEASESOURCE) LinkP := $(Link) -O3 -L$(PROJLIBPROFILESOURCE) -L$(LLVMLIBPROFILESOURCE) $(PROFILE) +# TOOLLINKOPTSB to pass options to the linker like library search path etc +# Note that this is different from TOOLLINKOPTS, these options +# are passed to the linker *before* the USEDLIBS options are passed. +# e.g. usage TOOLLINKOPTSB = -L/home/xxx/lib +ifdef TOOLLINKOPTSB +LinkG := $(LinkG) $(TOOLLINKOPTSB) +LinkO := $(LinkG) $(TOOLLINKOPTSB) +LinkP := $(LinkG) $(TOOLLINKOPTSB) +endif + # Create one .o file from a bunch of .o files... Relink := ${LIBTOOL} --mode=link $(CXX) |