diff options
author | Ian Lance Taylor <iant@google.com> | 2010-11-02 14:53:15 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2010-11-02 14:53:15 +0000 |
commit | 181e5ea4f4794af8339d86c5c186346951da810c (patch) | |
tree | 5dd74ca20c7f0977e2a1fd71bf3c80e5ead08e8b /gcc/Makefile.in | |
parent | 5239874d719f7bc6ba6615e3972c2e5f9187b63a (diff) | |
download | gcc-181e5ea4f4794af8339d86c5c186346951da810c.tar.gz |
configure.ac: Remove elf_getshdrstrndx test.
* configure.ac: Remove elf_getshdrstrndx test. Don't substitute
LTO_BINARY_READER or LTO_USE_LIBELF. Remove LIBELFLIBS and
LIBELFINC. Remove HAVE_libelf.
* config.gcc: Don't set lto_binary_reader.
* Makefile.in (LIBELFLIBS, LIBELFINC): Remove variables.
(LTO_BINARY_READER, LTO_USE_LIBELF): Remove variables.
(LIBS): Remove $(LIBELFLIBS).
(INCLUDES): Remove $(LIBELFINC).
* configure: Rebuild.
* config.in: Rebuild.
From-SVN: r166189
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 922b1328366..2e7b3d19dfc 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -319,17 +319,9 @@ PPLINC = @PPLINC@ CLOOGLIBS = @CLOOGLIBS@ CLOOGINC = @CLOOGINC@ -# How to find libelf -LIBELFLIBS = @LIBELFLIBS@ -LIBELFINC = @LIBELFINC@ - # Set to 'yes' if the LTO front end is enabled. enable_lto = @enable_lto@ -# Set according to LTO object file format. -LTO_BINARY_READER = @LTO_BINARY_READER@ -LTO_USE_LIBELF = @LTO_USE_LIBELF@ - # Compiler and flags needed for plugin support ifneq ($(ENABLE_BUILD_WITH_CXX),yes) PLUGINCC = @CC@ @@ -1034,7 +1026,7 @@ BUILD_LIBDEPS= $(BUILD_LIBIBERTY) LIBS = @LIBS@ $(CPPLIB) $(LIBINTL) $(LIBICONV) $(LIBIBERTY) $(LIBDECNUMBER) \ $(HOST_LIBS) BACKENDLIBS = $(CLOOGLIBS) $(PPLLIBS) $(GMPLIBS) $(PLUGINLIBS) $(HOST_LIBS) \ - $(ZLIB) $(LIBELFLIBS) + $(ZLIB) # Any system libraries needed just for GNAT. SYSLIBS = @GNAT_LIBEXC@ @@ -1065,7 +1057,7 @@ BUILD_ERRORS = build/errors.o INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ -I$(srcdir)/../include @INCINTL@ \ $(CPPINC) $(GMPINC) $(DECNUMINC) \ - $(PPLINC) $(CLOOGINC) $(LIBELFINC) + $(PPLINC) $(CLOOGINC) .c.o: $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $< $(OUTPUT_OPTION) |