OSDN Git Service

* config.gcc (LIBC_GLIBC, LIBC_UCLIBC, LIBC_BIONIC): Move constants
authormkuvyrkov <mkuvyrkov@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 19 Jul 2010 20:05:46 +0000 (20:05 +0000)
committermkuvyrkov <mkuvyrkov@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 19 Jul 2010 20:05:46 +0000 (20:05 +0000)
to top level.
* config/linux.h (LINUX_TARGET_OS_CPP_BUILTINS): Move Android-specific
definitions ...
* config/linux-android.h (ANDROID_TARGET_OS_CPP_BUILTINS): ... here.
New macro.
* config/arm/linux-eabi.h (TARGET_OS_CPP_BUILTINS): Use it.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@162315 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config.gcc
gcc/config/arm/linux-eabi.h
gcc/config/linux-android.h
gcc/config/linux.h

index 1f37815..5ce760f 100644 (file)
@@ -1,3 +1,13 @@
+2010-07-20  Maxim Kuvyrkov  <maxim@codesourcery.com>
+
+       * config.gcc (LIBC_GLIBC, LIBC_UCLIBC, LIBC_BIONIC): Move constants
+       to top level.
+       * config/linux.h (LINUX_TARGET_OS_CPP_BUILTINS): Move Android-specific
+       definitions ...
+       * config/linux-android.h (ANDROID_TARGET_OS_CPP_BUILTINS): ... here.
+       New macro.
+       * config/arm/linux-eabi.h (TARGET_OS_CPP_BUILTINS): Use it.
+
 2010-07-19  Richard Sandiford  <rdsandiford@googlemail.com>
 
        * gengtype.c (start_root_entry): New function, split out from
index 31ea32e..12b245d 100644 (file)
@@ -405,6 +405,9 @@ case ${target} in
        ;;
 esac
 
+# Common C libraries.
+tm_defines="$tm_defines LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3"
+
 # Common parts for widely ported systems.
 case ${target} in
 *-*-darwin*)
@@ -508,8 +511,6 @@ case ${target} in
     *-*-gnu*)
       tmake_file="$tmake_file t-gnu";;
   esac
-  # Common C libraries.
-  tm_defines="$tm_defines LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3"
   # glibc / uclibc / bionic switch.
   # uclibc and bionic aren't usable for GNU/Hurd and neither for GNU/k*BSD.
   case $target in
index e69035e..1c034bc 100644 (file)
@@ -27,6 +27,7 @@
     {                                          \
       TARGET_BPABI_CPP_BUILTINS();             \
       LINUX_TARGET_OS_CPP_BUILTINS();          \
+      ANDROID_TARGET_OS_CPP_BUILTINS();                \
     }                                          \
   while (false)
 
index a43bab5..94c5274 100644 (file)
    along with GCC; see the file COPYING3.  If not see
    <http://www.gnu.org/licenses/>.  */
 
+#define ANDROID_TARGET_OS_CPP_BUILTINS()                       \
+    do {                                                       \
+       if (OPTION_ANDROID)                                     \
+         builtin_define ("__ANDROID__");                       \
+    } while (0)
+
 #if ANDROID_DEFAULT
 # define NOANDROID "mno-android"
 #else
index 241e656..e283a9a 100644 (file)
@@ -96,8 +96,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
        builtin_assert ("system=linux");                        \
        builtin_assert ("system=unix");                         \
        builtin_assert ("system=posix");                        \
-       if (OPTION_ANDROID)                                     \
-         builtin_define ("__ANDROID__");                       \
     } while (0)
 
 #if defined(HAVE_LD_EH_FRAME_HDR)