Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(9585)

Issue 6206055: [google/gcc-4_6] Backport arm hardfp patch from trunk

Can't Edit
Can't Publish+Mail
Start Review
Created:
11 years, 11 months ago by shenhan
Modified:
11 years, 11 months ago
Reviewers:
xur, carrot
CC:
gcc-patches_gcc.gnu.org, asharif1
Visibility:
Public.

Description

Hi Rong and Carrot, could you take a look at this patch, thanks! The modification is in upstream (with a minor modification). Trunk patch revision - 186859. Background - There is the need to agree on the runtime linker path for the various ARM hard-float ports that distros are working on right now. Without doing this, we'll break binary compatibility between the distros. The conclusion was made. And here is the detailed information - https://wiki.linaro.org/OfficeofCTO/HardFloat/LinkerPathCallApr2012 ===== Patch starts diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h index 3a32188..58d06c2 100644 --- a/gcc/config/arm/linux-eabi.h +++ b/gcc/config/arm/linux-eabi.h @@ -32,7 +32,8 @@ while (false) /* We default to a soft-float ABI so that binaries can run on all - target hardware. */ + target hardware. If you override this to use the hard-float ABI then + change the setting of GLIBC_DYNAMIC_LINKER_DEFAULT as well. */ #undef TARGET_DEFAULT_FLOAT_ABI #define TARGET_DEFAULT_FLOAT_ABI ARM_FLOAT_ABI_SOFT @@ -59,10 +60,26 @@ #undef SUBTARGET_EXTRA_LINK_SPEC #define SUBTARGET_EXTRA_LINK_SPEC " -m " TARGET_LINKER_EMULATION -/* Use ld-linux.so.3 so that it will be possible to run "classic" - GNU/Linux binaries on an EABI system. */ +/* GNU/Linux on ARM currently supports three dynamic linkers: + - ld-linux.so.2 - for the legacy ABI + - ld-linux.so.3 - for the EABI-derived soft-float ABI + - ld-linux-armhf.so.3 - for the EABI-derived hard-float ABI. + All the dynamic linkers live in /lib. + We default to soft-float, but this can be overridden by changing both + GLIBC_DYNAMIC_LINKER_DEFAULT and TARGET_DEFAULT_FLOAT_ABI. */ + #undef GLIBC_DYNAMIC_LINKER -#define GLIBC_DYNAMIC_LINKER RUNTIME_ROOT_PREFIX "/lib/ld-linux.so.3" +#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT \ + RUNTIME_ROOT_PREFIX "/lib/ld-linux.so.3" +#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT \ + RUNTIME_ROOT_PREFIX "/lib/ld-linux-armhf.so.3" +#define GLIBC_DYNAMIC_LINKER_DEFAULT \ + RUNTIME_ROOT_PREFIX GLIBC_DYNAMIC_LINKER_SOFT_FLOAT + +#define GLIBC_DYNAMIC_LINKER \ + "%{mfloat-abi=hard:" GLIBC_DYNAMIC_LINKER_HARD_FLOAT "} \ + %{mfloat-abi=soft*:" GLIBC_DYNAMIC_LINKER_SOFT_FLOAT "} \ + %{!mfloat-abi=*:" GLIBC_DYNAMIC_LINKER_DEFAULT "}" /* At this point, bpabi.h will have clobbered LINK_SPEC. We want to use the GNU/Linux version, not the generic BPABI version. */

Patch Set 1 #

Patch Set 2 : Added changelog entry #

Total comments: 2

Patch Set 3 : updated per carrot's comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+36 lines, -4 lines) Patch
M gcc/ChangeLog View 1 2 1 chunk +16 lines, -0 lines 0 comments Download
M gcc/config/arm/linux-eabi.h View 1 2 2 chunks +20 lines, -4 lines 0 comments Download

Messages

Total messages: 6
shenhan
Hi Rong and Carrot, could you take a look at this patch, thanks! The modification ...
11 years, 11 months ago (2012-05-11 18:26:40 UTC) #1
carrot
Please add ChangeLog and the trunk patch revision.
11 years, 11 months ago (2012-05-11 18:48:40 UTC) #2
shenhan
On 2012/05/11 18:48:40, carrot wrote: > Please add ChangeLog and the trunk patch revision. Thanks. ...
11 years, 11 months ago (2012-05-11 21:46:22 UTC) #3
carrot
http://codereview.appspot.com/6206055/diff/4001/gcc/ChangeLog File gcc/ChangeLog (right): http://codereview.appspot.com/6206055/diff/4001/gcc/ChangeLog#newcode11 gcc/ChangeLog:11: It seems you also merged in another patch r187012, ...
11 years, 11 months ago (2012-05-11 22:15:37 UTC) #4
shenhan
On 2012/05/11 22:15:37, carrot wrote: > http://codereview.appspot.com/6206055/diff/4001/gcc/ChangeLog > File gcc/ChangeLog (right): > > http://codereview.appspot.com/6206055/diff/4001/gcc/ChangeLog#newcode11 > ...
11 years, 11 months ago (2012-05-14 17:16:52 UTC) #5
carrot
11 years, 11 months ago (2012-05-14 23:49:09 UTC) #6
OK for google branch.

google/gcc-4_7 may also need this patch.
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b