diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2011-07-09 22:36:12 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2011-07-09 22:36:12 +0000 |
commit | 9a0b29f0ced63fcf1d01c9797a3745dd0ec1fb6b (patch) | |
tree | 658bf8e05a0ad73abf13b11dbcaf6678d317e221 | |
parent | a50023f9a8f3a7dcf40228d268463e5dbe3a8c55 (diff) | |
download | gcc-9a0b29f0ced63fcf1d01c9797a3745dd0ec1fb6b.zip gcc-9a0b29f0ced63fcf1d01c9797a3745dd0ec1fb6b.tar.gz gcc-9a0b29f0ced63fcf1d01c9797a3745dd0ec1fb6b.tar.bz2 |
re PR target/49684 (build fails on crtstuff.c / crtbegin using default CRT_CALL_STATIC_FUNCTION)
PR target/49684
* config/cris/t-elfmulti (CRTSTUFF_T_CFLAGS): Don't include
$(LIBGCC2_CFLAGS).
From-SVN: r176111
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/cris/t-elfmulti | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fba2db9..e654d17 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2011-07-10 Hans-Peter Nilsson <hp@axis.com> + PR target/49684 + * config/cris/t-elfmulti (CRTSTUFF_T_CFLAGS): Don't include + $(LIBGCC2_CFLAGS). + PR bootstrap/49680 * config/cris/cris.c (cris_asm_output_case_end): Robustify against stray notes and debug insns by using prev_nonnote_nondebug_insn diff --git a/gcc/config/cris/t-elfmulti b/gcc/config/cris/t-elfmulti index 8d4dfea..90eeaae 100644 --- a/gcc/config/cris/t-elfmulti +++ b/gcc/config/cris/t-elfmulti @@ -1,4 +1,4 @@ -# Copyright (C) 2001, 2007 Free Software Foundation, Inc. +# Copyright (C) 2001, 2007, 2011 Free Software Foundation, Inc. # # This file is part of GCC. # @@ -31,4 +31,4 @@ MULTILIB_MATCHES = \ MULTILIB_EXTRA_OPTS = mbest-lib-options INSTALL_LIBGCC = install-multilib LIBGCC = stmp-multilib -CRTSTUFF_T_CFLAGS = $(LIBGCC2_CFLAGS) -moverride-best-lib-options +CRTSTUFF_T_CFLAGS = -moverride-best-lib-options |