Commit 9945a876 by Matthias Klose Committed by Matthias Klose

config.gcc: Match arm*-*-linux-* for ARM Linux/GNU.

gcc/
2012-10-15  Matthias Klose  <doko@ubuntu.com>

        * config.gcc: Match arm*-*-linux-* for ARM Linux/GNU.
        * doc/install.texi: Use arm-*-*linux-* instead of arm-*-*linux-gnueabi.

gcc/testsuite/
2012-10-15  Matthias Klose  <doko@ubuntu.com>

        * lib/target-supports.exp (check_profiling_available): Match
        arm*-*-linux-* for ARM Linux/GNU.
        * g++.dg/torture/predcom-1.C: Match arm*-*-linux-* for ARM Linux/GNU.
        * gfortran.dg/enum_10.f90: Likewise.
        * gfortran.dg/enum_9.f90: Likewise.
        * gcc.target/arm/synchronize.c: Likewise.
        * g++.old-deja/g++.jason/enum6.C: Likewise.
        * g++.old-deja/g++.other/enum4.C: Likewise.
        * g++.old-deja/g++.law/enum9.C: Likewise.

gcc/ada/
2012-10-15  Matthias Klose  <doko@ubuntu.com>

        * gcc-interface/Makefile.in: Match arm*-*-linux-*eabi* for
        ARM Linux/GNU.

libgcc/
2012-10-15  Matthias Klose  <doko@ubuntu.com>

        * config.host: Match arm*-*-linux-* for ARM Linux/GNU.

libstdc++-v3/
2012-10-15  Matthias Klose  <doko@ubuntu.com>

        * configure.host: Match arm*-*-linux-* for ARM Linux/GNU.
        * testsuite/20_util/make_signed/requirements/typedefs-2.cc: Likewise.
        * testsuite/20_util/make_unsigned/requirements/typedefs-2.cc: Likewise.

libjava/
2012-10-15  Matthias Klose  <doko@ubuntu.com>

        * configure.ac: Match arm*-*-linux-* for ARM Linux/GNU.
        * configure: Regenerate.

From-SVN: r192475
parent 55e7f907
2012-10-15 Matthias Klose <doko@ubuntu.com>
* config.gcc: Match arm*-*-linux-* for ARM Linux/GNU.
* doc/install.texi: Use arm-*-*linux-* instead of arm-*-*linux-gnueabi.
2012-10-13 Uros Bizjak <ubizjak@gmail.com> 2012-10-13 Uros Bizjak <ubizjak@gmail.com>
* config/i386/sse.md (UNSPEC_MOVU): Remove. * config/i386/sse.md (UNSPEC_MOVU): Remove.
2012-10-15 Matthias Klose <doko@ubuntu.com>
* gcc-interface/Makefile.in: Match arm*-*-linux-*eabi* for
ARM Linux/GNU.
2012-10-05 Robert Dewar <dewar@adacore.com> 2012-10-05 Robert Dewar <dewar@adacore.com>
* sem_ch7.adb: Minor reformatting. * sem_ch7.adb: Minor reformatting.
......
...@@ -1850,7 +1850,7 @@ ifeq ($(strip $(filter-out powerpc% e500% linux%,$(arch) $(osys))),) ...@@ -1850,7 +1850,7 @@ ifeq ($(strip $(filter-out powerpc% e500% linux%,$(arch) $(osys))),)
LIBRARY_VERSION := $(LIB_VERSION) LIBRARY_VERSION := $(LIB_VERSION)
endif endif
ifeq ($(strip $(filter-out arm% linux-gnueabi,$(arch) $(osys)-$(word 4,$(targ)))),) ifeq ($(strip $(filter-out arm%-linux,$(arch)-$(osys)) $(if $(findstring eabi,$(word 4,$(targ))),,$(word 4,$(targ)))),)
LIBGNAT_TARGET_PAIRS = \ LIBGNAT_TARGET_PAIRS = \
a-intnam.ads<a-intnam-linux.ads \ a-intnam.ads<a-intnam-linux.ads \
s-inmaop.adb<s-inmaop-posix.adb \ s-inmaop.adb<s-inmaop-posix.adb \
......
...@@ -829,7 +829,7 @@ arm*-*-netbsdelf*) ...@@ -829,7 +829,7 @@ arm*-*-netbsdelf*)
extra_options="${extra_options} netbsd.opt netbsd-elf.opt" extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
tmake_file="${tmake_file} arm/t-arm" tmake_file="${tmake_file} arm/t-arm"
;; ;;
arm*-*-linux-*eabi*) # ARM GNU/Linux with ELF arm*-*-linux-*) # ARM GNU/Linux with ELF
tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h arm/elf.h arm/linux-gas.h arm/linux-elf.h" tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h arm/elf.h arm/linux-gas.h arm/linux-elf.h"
case $target in case $target in
arm*b-*-linux*) arm*b-*-linux*)
......
...@@ -3151,7 +3151,7 @@ This is a synonym for @samp{x86_64-*-solaris2.1[0-9]*}. ...@@ -3151,7 +3151,7 @@ This is a synonym for @samp{x86_64-*-solaris2.1[0-9]*}.
@heading @anchor{arm-x-eabi}arm-*-eabi @heading @anchor{arm-x-eabi}arm-*-eabi
ARM-family processors. Subtargets that use the ELF object format ARM-family processors. Subtargets that use the ELF object format
require GNU binutils 2.13 or newer. Such subtargets include: require GNU binutils 2.13 or newer. Such subtargets include:
@code{arm-*-netbsdelf}, @code{arm-*-*linux-gnueabi} @code{arm-*-netbsdelf}, @code{arm-*-*linux-*}
and @code{arm-*-rtemseabi}. and @code{arm-*-rtemseabi}.
@html @html
......
2012-10-15 Matthias Klose <doko@ubuntu.com>
* lib/target-supports.exp (check_profiling_available): Match
arm*-*-linux-* for ARM Linux/GNU.
* g++.dg/torture/predcom-1.C: Match arm*-*-linux-* for ARM Linux/GNU.
* gfortran.dg/enum_10.f90: Likewise.
* gfortran.dg/enum_9.f90: Likewise.
* gcc.target/arm/synchronize.c: Likewise.
* g++.old-deja/g++.jason/enum6.C: Likewise.
* g++.old-deja/g++.other/enum4.C: Likewise.
* g++.old-deja/g++.law/enum9.C: Likewise.
2012-10-15 Richard Sandiford <rdsandiford@googlemail.com> 2012-10-15 Richard Sandiford <rdsandiford@googlemail.com>
* g++.dg/tls/thread_local-cse.C: Move dg-do line. * g++.dg/tls/thread_local-cse.C: Move dg-do line.
......
/* Test for ICE in predictive commoning with empty loop header block /* Test for ICE in predictive commoning with empty loop header block
on arm-none-linux-gnueabi. */ on arm-none-linux-*. */
struct Foo struct Foo
{ {
......
...@@ -7,10 +7,10 @@ ...@@ -7,10 +7,10 @@
// enum-size attributes should only be emitted if there are values of // enum-size attributes should only be emitted if there are values of
// enum type that can escape the compilation unit, gcc cannot currently // enum type that can escape the compilation unit, gcc cannot currently
// detect this; if this facility is added then this linker option should // detect this; if this facility is added then this linker option should
// not be needed. arm-*-linux*eabi should be a good approximation to // not be needed. arm-*-linux* should be a good approximation to
// those platforms where the EABI supplement defines enum values to be // those platforms where the EABI supplement defines enum values to be
// 32 bits wide. // 32 bits wide.
// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } // { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux* } }
#include <limits.h> #include <limits.h>
......
...@@ -7,10 +7,10 @@ ...@@ -7,10 +7,10 @@
// enum-size attributes should only be emitted if there are values of // enum-size attributes should only be emitted if there are values of
// enum type that can escape the compilation unit, gcc cannot currently // enum type that can escape the compilation unit, gcc cannot currently
// detect this; if this facility is added then this linker option should // detect this; if this facility is added then this linker option should
// not be needed. arm-*-linux*eabi should be a good approximation to // not be needed. arm-*-linux* should be a good approximation to
// those platforms where the EABI supplement defines enum values to be // those platforms where the EABI supplement defines enum values to be
// 32 bits wide. // 32 bits wide.
// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } // { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux* } }
// GROUPS passed enums // GROUPS passed enums
extern "C" int printf (const char *, ...); extern "C" int printf (const char *, ...);
......
...@@ -9,10 +9,10 @@ ...@@ -9,10 +9,10 @@
// enum-size attributes should only be emitted if there are values of // enum-size attributes should only be emitted if there are values of
// enum type that can escape the compilation unit, gcc cannot currently // enum type that can escape the compilation unit, gcc cannot currently
// detect this; if this facility is added then this linker option should // detect this; if this facility is added then this linker option should
// not be needed. arm-*-linux*eabi should be a good approximation to // not be needed. arm-*-linux* should be a good approximation to
// those platforms where the EABI supplement defines enum values to be // those platforms where the EABI supplement defines enum values to be
// 32 bits wide. // 32 bits wide.
// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } // { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux* } }
enum E { enum E {
a = -312 a = -312
......
/* { dg-final { scan-assembler "__sync_synchronize|dmb|mcr" { target arm*-*-linux-*eabi } } } */ /* { dg-final { scan-assembler "__sync_synchronize|dmb|mcr" { target arm*-*-linux-* } } } */
void *foo (void) void *foo (void)
{ {
......
! { dg-do run } ! { dg-do run }
! { dg-additional-sources enum_10.c } ! { dg-additional-sources enum_10.c }
! { dg-options "-fshort-enums -w" } ! { dg-options "-fshort-enums -w" }
! { dg-options "-fshort-enums -w -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ! { dg-options "-fshort-enums -w -Wl,--no-enum-size-warning" { target arm*-*-linux* } }
! Make sure short enums are indeed interoperable with the ! Make sure short enums are indeed interoperable with the
! corresponding C type. ! corresponding C type.
......
! { dg-do run } ! { dg-do run }
! { dg-options "-fshort-enums" } ! { dg-options "-fshort-enums" }
! { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ! { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux* } }
! Program to test enumerations when option -fshort-enums is given ! Program to test enumerations when option -fshort-enums is given
program main program main
......
...@@ -3924,7 +3924,7 @@ proc check_effective_target_sync_long_long_runtime { } { ...@@ -3924,7 +3924,7 @@ proc check_effective_target_sync_long_long_runtime { } {
} }
} "" } ""
}] }]
} elseif { [istarget arm*-*-linux-gnueabi] } { } elseif { [istarget arm*-*-linux-*] } {
return [check_runtime sync_longlong_runtime { return [check_runtime sync_longlong_runtime {
#include <stdlib.h> #include <stdlib.h>
int main () int main ()
...@@ -3968,7 +3968,7 @@ proc check_effective_target_sync_int_long { } { ...@@ -3968,7 +3968,7 @@ proc check_effective_target_sync_int_long { } {
|| [istarget i?86-*-*] || [istarget i?86-*-*]
|| [istarget x86_64-*-*] || [istarget x86_64-*-*]
|| [istarget alpha*-*-*] || [istarget alpha*-*-*]
|| [istarget arm*-*-linux-gnueabi] || [istarget arm*-*-linux-*]
|| [istarget bfin*-*linux*] || [istarget bfin*-*linux*]
|| [istarget hppa*-*linux*] || [istarget hppa*-*linux*]
|| [istarget s390*-*-*] || [istarget s390*-*-*]
...@@ -3999,7 +3999,7 @@ proc check_effective_target_sync_char_short { } { ...@@ -3999,7 +3999,7 @@ proc check_effective_target_sync_char_short { } {
|| [istarget i?86-*-*] || [istarget i?86-*-*]
|| [istarget x86_64-*-*] || [istarget x86_64-*-*]
|| [istarget alpha*-*-*] || [istarget alpha*-*-*]
|| [istarget arm*-*-linux-gnueabi] || [istarget arm*-*-linux-*]
|| [istarget hppa*-*linux*] || [istarget hppa*-*linux*]
|| [istarget s390*-*-*] || [istarget s390*-*-*]
|| [istarget powerpc*-*-*] || [istarget powerpc*-*-*]
......
2012-10-15 Matthias Klose <doko@ubuntu.com>
* config.host: Match arm*-*-linux-* for ARM Linux/GNU.
2012-10-15 Pavel Chupin <pavel.v.chupin@intel.com> 2012-10-15 Pavel Chupin <pavel.v.chupin@intel.com>
* configure: Regenerate. * configure: Regenerate.
......
...@@ -316,7 +316,7 @@ arm*-*-netbsdelf*) ...@@ -316,7 +316,7 @@ arm*-*-netbsdelf*)
arm*-*-linux*) # ARM GNU/Linux with ELF arm*-*-linux*) # ARM GNU/Linux with ELF
tmake_file="${tmake_file} arm/t-arm t-fixedpoint-gnu-prefix" tmake_file="${tmake_file} arm/t-arm t-fixedpoint-gnu-prefix"
case ${host} in case ${host} in
arm*-*-linux-*eabi) arm*-*-linux-*)
tmake_file="${tmake_file} arm/t-elf arm/t-bpabi arm/t-linux-eabi t-slibgcc-libgcc" tmake_file="${tmake_file} arm/t-elf arm/t-bpabi arm/t-linux-eabi t-slibgcc-libgcc"
tm_file="$tm_file arm/bpabi-lib.h" tm_file="$tm_file arm/bpabi-lib.h"
unwind_header=config/arm/unwind-arm.h unwind_header=config/arm/unwind-arm.h
......
2012-10-15 Matthias Klose <doko@ubuntu.com>
* configure.ac: Match arm*-*-linux-* for ARM Linux/GNU.
* configure: Regenerate.
2012-09-14 Dehao Chen <dehao@google.com> 2012-09-14 Dehao Chen <dehao@google.com>
* testsuite/libjava.lang/sourcelocation.java: New cases. * testsuite/libjava.lang/sourcelocation.java: New cases.
......
...@@ -20551,7 +20551,7 @@ case "${host}" in ...@@ -20551,7 +20551,7 @@ case "${host}" in
# on Darwin -single_module speeds up loading of the dynamic libraries. # on Darwin -single_module speeds up loading of the dynamic libraries.
extra_ldflags_libjava=-Wl,-single_module extra_ldflags_libjava=-Wl,-single_module
;; ;;
arm*linux*eabi) arm*-*-linux-*)
# Some of the ARM unwinder code is actually in libstdc++. We # Some of the ARM unwinder code is actually in libstdc++. We
# could in principle replicate it in libgcj, but it's better to # could in principle replicate it in libgcj, but it's better to
# have a dependency on libstdc++. # have a dependency on libstdc++.
......
...@@ -931,7 +931,7 @@ case "${host}" in ...@@ -931,7 +931,7 @@ case "${host}" in
# on Darwin -single_module speeds up loading of the dynamic libraries. # on Darwin -single_module speeds up loading of the dynamic libraries.
extra_ldflags_libjava=-Wl,-single_module extra_ldflags_libjava=-Wl,-single_module
;; ;;
arm*linux*eabi) arm*-*-linux-*)
# Some of the ARM unwinder code is actually in libstdc++. We # Some of the ARM unwinder code is actually in libstdc++. We
# could in principle replicate it in libgcj, but it's better to # could in principle replicate it in libgcj, but it's better to
# have a dependency on libstdc++. # have a dependency on libstdc++.
......
2012-10-15 Matthias Klose <doko@ubuntu.com>
* configure.host: Match arm*-*-linux-* for ARM Linux/GNU.
* testsuite/20_util/make_signed/requirements/typedefs-2.cc: Likewise.
* testsuite/20_util/make_unsigned/requirements/typedefs-2.cc: Likewise.
2012-10-15 Pavel Chupin <pavel.v.chupin@intel.com> 2012-10-15 Pavel Chupin <pavel.v.chupin@intel.com>
* Makefile.in: Regenerate. * Makefile.in: Regenerate.
......
...@@ -348,7 +348,7 @@ case "${host}" in ...@@ -348,7 +348,7 @@ case "${host}" in
fi fi
esac esac
case "${host}" in case "${host}" in
arm*-*-linux-*eabi) arm*-*-linux-*)
port_specific_symbol_files="\$(srcdir)/../config/os/gnu-linux/arm-eabi-extra.ver" port_specific_symbol_files="\$(srcdir)/../config/os/gnu-linux/arm-eabi-extra.ver"
;; ;;
esac esac
......
// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums" } // { dg-options "-std=gnu++0x -funsigned-char -fshort-enums" }
// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } // { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux-* } }
// 2007-05-03 Benjamin Kosnik <bkoz@redhat.com> // 2007-05-03 Benjamin Kosnik <bkoz@redhat.com>
// //
......
// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums" } // { dg-options "-std=gnu++0x -funsigned-char -fshort-enums" }
// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } // { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux-* } }
// 2007-05-03 Benjamin Kosnik <bkoz@redhat.com> // 2007-05-03 Benjamin Kosnik <bkoz@redhat.com>
// //
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment