Commit e75d8ec9 by Ian Lance Taylor Committed by Ian Lance Taylor

Makefile.in (LIBBACKTRACE): New variable.

	* gcc-interface/Makefile.in (LIBBACKTRACE): New variable.
	(LIBS): Add $(LIBBACKTRACE).
	(LIBDEPS): Add $(LIBBACKTRACE).
	(TOOLS_LIBS): Add ../../../libbacktrace/.libs/libbacktrace.a.

From-SVN: r191793
parent 8054b82e
2012-09-26 Ian Lance Taylor <iant@google.com>
* gcc-interface/Makefile.in (LIBBACKTRACE): New variable.
(LIBS): Add $(LIBBACKTRACE).
(LIBDEPS): Add $(LIBBACKTRACE).
(TOOLS_LIBS): Add ../../../libbacktrace/.libs/libbacktrace.a.
2012-09-10 Diego Novillo <dnovillo@google.com> 2012-09-10 Diego Novillo <dnovillo@google.com>
* gcc-interface/decl.c (build_subst_list): Adjust call to VEC_safe_push. * gcc-interface/decl.c (build_subst_list): Adjust call to VEC_safe_push.
......
...@@ -240,15 +240,20 @@ ALL_COMPILERFLAGS = $(ALL_CFLAGS) ...@@ -240,15 +240,20 @@ ALL_COMPILERFLAGS = $(ALL_CFLAGS)
# This is where we get libiberty.a from. # This is where we get libiberty.a from.
LIBIBERTY = ../../libiberty/libiberty.a LIBIBERTY = ../../libiberty/libiberty.a
# We need to link against libbacktrace because diagnostic.c in
# libcommon.a uses it.
LIBBACKTRACE = ../../libbacktrace/.libs/libbacktrace.a
# How to link with both our special library facilities # How to link with both our special library facilities
# and the system's installed libraries. # and the system's installed libraries.
LIBS = $(LIBINTL) $(LIBICONV) $(LIBIBERTY) $(SYSLIBS) LIBS = $(LIBINTL) $(LIBICONV) $(LIBBACKTRACE) $(LIBIBERTY) $(SYSLIBS)
LIBDEPS = $(LIBINTL_DEP) $(LIBICONV_DEP) $(LIBIBERTY) LIBDEPS = $(LIBINTL_DEP) $(LIBICONV_DEP) $(LIBBACKTRACE) $(LIBIBERTY)
# Default is no TGT_LIB; one might be passed down or something # Default is no TGT_LIB; one might be passed down or something
TGT_LIB = TGT_LIB =
TOOLS_LIBS = targext.o link.o ../../ggc-none.o ../../libcommon-target.a \ TOOLS_LIBS = targext.o link.o ../../ggc-none.o ../../libcommon-target.a \
../../libcommon.a ../../../libcpp/libcpp.a $(LIBGNAT) $(LIBINTL) $(LIBICONV) \ ../../libcommon.a ../../../libcpp/libcpp.a $(LIBGNAT) $(LIBINTL) $(LIBICONV) \
../../../libiberty/libiberty.a $(SYSLIBS) $(TGT_LIB) ../../../libbacktrace/.libs/libbacktrace.a ../../../libiberty/libiberty.a \
$(SYSLIBS) $(TGT_LIB)
# Convert the target variable into a space separated list of architecture, # Convert the target variable into a space separated list of architecture,
# manufacturer, and operating system and assign each of those to its own # manufacturer, and operating system and assign each of those to its own
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment