diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/avr/avr.h | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8b996d72dcb..f967960e119 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-09-10 Theodore A. Roth <troth@verinet.com> + + * gcc/config/avr/avr.h: Set default options for C++ for avr. + 2002-09-13 Richard Henderson <rth@redhat.com> * Makefile.in (toplev.o): Depend on real.h. diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h index cf62b8b71d2..308f216ab41 100644 --- a/gcc/config/avr/avr.h +++ b/gcc/config/avr/avr.h @@ -2523,6 +2523,12 @@ extern int avr_case_values_threshold; Do not define this macro if it does not need to do anything. */ +#define CC1PLUS_SPEC "%{!frtti:-fno-rtti} \ + %{!fenforce-eh-specs:-fno-enforce-eh-specs} \ + %{!fexceptions:-fno-exceptions}" +/* A C string constant that tells the GNU CC drvier program options to + pass to `cc1plus'. */ + #define ASM_SPEC "%{mmcu=*:-mmcu=%*}" /* A C string constant that tells the GNU CC driver program options to pass to the assembler. It can also specify how to translate |