diff options
author | Joern Rennecke <joern.rennecke@embecosm.com> | 2013-02-26 14:55:31 +0000 |
---|---|---|
committer | Joern Rennecke <amylaar@gcc.gnu.org> | 2013-02-26 14:55:31 +0000 |
commit | f8be51697f4b0d8116d4f4264b5891f64324f10e (patch) | |
tree | a03bab333246ea9bd3697764ca4718c4d5eb10fd /gcc | |
parent | f8a8fea72cda1d812741375fc32d355d0546c861 (diff) | |
download | gcc-f8be51697f4b0d8116d4f4264b5891f64324f10e.zip gcc-f8be51697f4b0d8116d4f4264b5891f64324f10e.tar.gz gcc-f8be51697f4b0d8116d4f4264b5891f64324f10e.tar.bz2 |
re PR target/54662 (Wrong warning flags for building mep-pragma.o, fails to build)
PR target/54662
* config/mep/t-mep (mep-pragma.o): Use ALL_COMPILERFLAGS instead of
ALL_CFLAGS.
From-SVN: r196291
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mep/t-mep | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c245470..7ea63ec 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -28,6 +28,10 @@ (arm_block_move_unaligned_straight): Likewise. (arm_adjust_block_mem): Likewise. + PR target/54662 + * config/mep/t-mep (mep-pragma.o): Use ALL_COMPILERFLAGS instead of + ALL_CFLAGS. + 2013-02-26 Marek Polacek <polacek@redhat.com> PR tree-optimization/56426 diff --git a/gcc/config/mep/t-mep b/gcc/config/mep/t-mep index 7e0321c..b877b95 100644 --- a/gcc/config/mep/t-mep +++ b/gcc/config/mep/t-mep @@ -29,7 +29,7 @@ mep-pragma.o: $(srcdir)/config/mep/mep-pragma.c $(CONFIG_H) $(SYSTEM_H) \ coretypes.h $(TM_H) $(TREE_H) $(RTL_H) $(C_PRAGMA_H) \ $(CPPLIB_H) hard-reg-set.h output.h $(srcdir)/config/mep/mep-protos.h \ function.h insn-config.h reload.h $(TARGET_H) - $(COMPILER) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< + $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< MULTILIB_OPTIONS = mel mall-opts mfar MULTILIB_DIRNAMES = el allopt far |