Home | History | Annotate | Download | only in gcc
      1 From 4fe805f627c018d77091ea0aad92553c54d47567 Mon Sep 17 00:00:00 2001
      2 From: David 'Digit' Turner <digit (a] google.com>
      3 Date: Fri, 17 Feb 2012 19:35:45 +0100
      4 Subject: Enable C++ exceptions and RTTI by default.
      5 
      6 With this change, -fexceptions and -frtti become default options
      7 when compiling C++ sources.
      8 ---
      9  gcc-4.4.3/gcc/config/linux-android.h |    4 ++--
     10  gcc-4.6/gcc/config/linux-android.h   |    4 ++--
     11  2 files changed, 4 insertions(+), 4 deletions(-)
     12 
     13 diff --git a/gcc-4.4.3/gcc/config/linux-android.h b/gcc-4.4.3/gcc/config/linux-android.h
     14 index 5ca3858..d938c22 100644
     15 --- a/gcc-4.4.3/gcc/config/linux-android.h
     16 +++ b/gcc-4.4.3/gcc/config/linux-android.h
     17 @@ -46,8 +46,8 @@
     18    "%{!fno-pic:%{!fno-PIC:%{!fpic:%{!fPIC: -fPIC}}}}"
     19  
     20  #define ANDROID_CC1PLUS_SPEC						\
     21 -  "%{!fexceptions:%{!fno-exceptions: -fno-exceptions}} "		\
     22 -  "%{!frtti:%{!fno-rtti: -fno-rtti}}"
     23 +  "%{!fexceptions:%{!fno-exceptions: -fexceptions}} "		\
     24 +  "%{!frtti:%{!fno-rtti: -frtti}}"
     25  
     26  #define ANDROID_LIB_SPEC \
     27    "%{!static: -ldl}"
     28 diff --git a/gcc-4.6/gcc/config/linux-android.h b/gcc-4.6/gcc/config/linux-android.h
     29 index 94c5274..7256082 100644
     30 --- a/gcc-4.6/gcc/config/linux-android.h
     31 +++ b/gcc-4.6/gcc/config/linux-android.h
     32 @@ -46,8 +46,8 @@
     33    "%{!fno-pic:%{!fno-PIC:%{!fpic:%{!fPIC: -fPIC}}}}"
     34  
     35  #define ANDROID_CC1PLUS_SPEC						\
     36 -  "%{!fexceptions:%{!fno-exceptions: -fno-exceptions}} "		\
     37 -  "%{!frtti:%{!fno-rtti: -fno-rtti}}"
     38 +  "%{!fexceptions:%{!fno-exceptions: -fexceptions}} "		\
     39 +  "%{!frtti:%{!fno-rtti: -frtti}}"
     40  
     41  #define ANDROID_LIB_SPEC \
     42    "%{!static: -ldl}"
     43 -- 
     44 1.7.6.rc0
     45 
     46