diff options
author | Theodore A. Roth <troth@verinet.com> | 2002-09-14 08:03:16 +0000 |
---|---|---|
committer | Denis Chertykov <denisc@gcc.gnu.org> | 2002-09-14 12:03:16 +0400 |
commit | 2e4851293a8bcc297e9546756aa130e15b12f699 (patch) | |
tree | d2b782f0bcf99ab782e5025d56362d49c88d6eeb /gcc | |
parent | 44ff054ed54c2afc24f6459f4b977599de36edbc (diff) | |
download | gcc-2e4851293a8bcc297e9546756aa130e15b12f699.zip gcc-2e4851293a8bcc297e9546756aa130e15b12f699.tar.gz gcc-2e4851293a8bcc297e9546756aa130e15b12f699.tar.bz2 |
* gcc/config/avr/avr.h: Set default options for C++ for avr.
From-SVN: r57134
Diffstat (limited to 'gcc')
-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 8b996d7..f967960 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 cf62b8b..308f216 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 |