From: Richard Earnshaw Date: Thu, 12 Apr 2012 14:11:49 +0000 (+0000) Subject: re PR target/49448 (arm-tab-linux-gnu-eabi enableds big endian when it should not) X-Git-Tag: releases/gcc-4.5.4~143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cf1862f5ee45a75a573a54601461ea671773542;p=thirdparty%2Fgcc.git re PR target/49448 (arm-tab-linux-gnu-eabi enableds big endian when it should not) PR target/49448 * config.gcc (arm*-*-linux*): Use an unambiguous pattern for detecting big-endian triplets. From-SVN: r186380 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 66c627f08b80..1489e3970459 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-04-12 Richard Earnshaw + + PR target/49448 + * config.gcc (arm*-*-linux*): Use an unambiguous pattern for + detecting big-endian triplets. + 2012-04-10 John David Anglin PR middle-end/52894 diff --git a/gcc/config.gcc b/gcc/config.gcc index 372d8befc8d2..ad98437af461 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -730,7 +730,7 @@ arm*-*-netbsd*) arm*-*-linux*) # ARM GNU/Linux with ELF tm_file="dbxelf.h elfos.h linux.h glibc-stdint.h arm/elf.h arm/linux-gas.h arm/linux-elf.h" case $target in - arm*b-*) + arm*b-*-linux*) tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1" ;; esac