diff options
author | Ian Lance Taylor <ian@airs.com> | 2011-11-03 04:32:01 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2011-11-03 04:32:01 +0000 |
commit | 3f3cddf146bb20f8222ce6ed8c8ffc6ee9c59124 (patch) | |
tree | ca8130f91064ed5ffc266840f2633256acae10e9 /gold/Makefile.in | |
parent | a8e2273bba9b658132165d70edb8b47023193e82 (diff) | |
download | gdb-3f3cddf146bb20f8222ce6ed8c8ffc6ee9c59124.zip gdb-3f3cddf146bb20f8222ce6ed8c8ffc6ee9c59124.tar.gz gdb-3f3cddf146bb20f8222ce6ed8c8ffc6ee9c59124.tar.bz2 |
* configure.ac: Add --with-lib-path option. Define LIB_PATH and
NATIVE_LINKER.
* Makefile.am (AM_CPPFLAGS): Define TOOLLIBDIR.
* options.cc (General_options::finalize): Use library search path
from configure script if specified. If not native and no sysroot,
only search TOOLLIBDIR.
* options.h (Search_directory::Search_directory): Change name to
const std::string&.
(General_options::add_to_library_path_with_sysroot): Change arg to
const std::string&.
* configure, Makefile.in, config.in: Rebuild.
Diffstat (limited to 'gold/Makefile.in')
-rw-r--r-- | gold/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/Makefile.in b/gold/Makefile.in index ff6d7c2..0fa739a 100644 --- a/gold/Makefile.in +++ b/gold/Makefile.in @@ -369,7 +369,7 @@ AM_CPPFLAGS = \ -I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../elfcpp \ -DLOCALEDIR="\"$(datadir)/locale\"" \ -DBINDIR="\"$(bindir)\"" -DTOOLBINDIR="\"$(tooldir)/bin\"" \ - @INCINTL@ + -DTOOLLIBDIR="\"$(tooldir)/lib\"" @INCINTL@ LIBIBERTY = ../libiberty/libiberty.a @PLUGINS_TRUE@LIBDL = -ldl |