From: Dinakar Dhurjati Date: Wed, 29 Oct 2003 14:28:35 +0000 (+0000) Subject: Added TOOLLINKOPTSB to pass options to the linker (e.g. adding search X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=87ea8aa5e73e61454e9400642cff0c3a3564fba7;p=oota-llvm.git 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 --- diff --git a/Makefile.rules b/Makefile.rules index 65599cc7953..fb2191d4a01 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)