diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-31 06:39:48 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-31 06:39:48 +0000 |
commit | 563ce9c45b030dfffe6b12295d46b10c349ef3a5 (patch) | |
tree | 5f00af2b47b4ab6dfe9ef4abce073d5624b8da17 /gcc/cp | |
parent | 3fa75b2d9e4bd27f5317d86096a8e0202f7e9447 (diff) | |
download | gcc-563ce9c45b030dfffe6b12295d46b10c349ef3a5.tar.gz |
* Makefile.in (ALL_CFLAGS): Add '-W -Wall'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27274 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index ca498061114..d145518bdd1 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +1999-05-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * Makefile.in (ALL_CFLAGS): Add '-W -Wall'. + 1999-05-31 Mark Mitchell <mark@codesourcery.com> * tree.c (build_cplus_array_type_1): Use push_obstacks_nochange diff --git a/gcc/cp/Makefile.in b/gcc/cp/Makefile.in index 616525c29cf..896b9e129f1 100644 --- a/gcc/cp/Makefile.in +++ b/gcc/cp/Makefile.in @@ -147,7 +147,7 @@ all.indirect: Makefile ../cc1plus$(exeext) INTERNAL_CFLAGS = $(CROSS) -DIN_GCC @extra_c_flags@ # This is the variable actually used when we compile. -ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS) +ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS) -W -Wall # Likewise. ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS) |