diff options
Diffstat (limited to 'gcc/config/linux.h')
-rw-r--r-- | gcc/config/linux.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/linux.h b/gcc/config/linux.h index 00b4f1c1cd5..8eaa74eb6b7 100644 --- a/gcc/config/linux.h +++ b/gcc/config/linux.h @@ -39,7 +39,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #define OPTION_BIONIC (linux_libc == LIBC_BIONIC) #endif -#define LINUX_TARGET_OS_CPP_BUILTINS() \ +#define GNU_USER_TARGET_OS_CPP_BUILTINS() \ do { \ if (OPTION_GLIBC) \ builtin_define ("__gnu_linux__"); \ @@ -81,13 +81,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #define BIONIC_DYNAMIC_LINKER32 "/system/bin/linker" #define BIONIC_DYNAMIC_LINKER64 "/system/bin/linker64" -#define LINUX_DYNAMIC_LINKER \ +#define GNU_USER_DYNAMIC_LINKER \ CHOOSE_DYNAMIC_LINKER (GLIBC_DYNAMIC_LINKER, UCLIBC_DYNAMIC_LINKER, \ BIONIC_DYNAMIC_LINKER) -#define LINUX_DYNAMIC_LINKER32 \ +#define GNU_USER_DYNAMIC_LINKER32 \ CHOOSE_DYNAMIC_LINKER (GLIBC_DYNAMIC_LINKER32, UCLIBC_DYNAMIC_LINKER32, \ BIONIC_DYNAMIC_LINKER32) -#define LINUX_DYNAMIC_LINKER64 \ +#define GNU_USER_DYNAMIC_LINKER64 \ CHOOSE_DYNAMIC_LINKER (GLIBC_DYNAMIC_LINKER64, UCLIBC_DYNAMIC_LINKER64, \ BIONIC_DYNAMIC_LINKER64) |