diff options
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.9.inc | 1 | ||||
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.9/0057-aarch64-config.patch | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.9.inc b/meta/recipes-devtools/gcc/gcc-4.9.inc index 8f212b23ae..2568e995ac 100644 --- a/meta/recipes-devtools/gcc/gcc-4.9.inc +++ b/meta/recipes-devtools/gcc/gcc-4.9.inc | |||
@@ -71,6 +71,7 @@ SRC_URI = "\ | |||
71 | file://0054-gcc-Makefile.in-fix-parallel-building-failure.patch \ | 71 | file://0054-gcc-Makefile.in-fix-parallel-building-failure.patch \ |
72 | file://0055-PR-rtl-optimization-61801.patch \ | 72 | file://0055-PR-rtl-optimization-61801.patch \ |
73 | file://0056-top-level-reorder_gcc-bug-61144.patch \ | 73 | file://0056-top-level-reorder_gcc-bug-61144.patch \ |
74 | file://0057-aarch64-config.patch \ | ||
74 | file://0058-gcc-r212171.patch \ | 75 | file://0058-gcc-r212171.patch \ |
75 | file://0059-gcc-PR-rtl-optimization-63348.patch \ | 76 | file://0059-gcc-PR-rtl-optimization-63348.patch \ |
76 | " | 77 | " |
diff --git a/meta/recipes-devtools/gcc/gcc-4.9/0057-aarch64-config.patch b/meta/recipes-devtools/gcc/gcc-4.9/0057-aarch64-config.patch new file mode 100644 index 0000000000..f29559698a --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-4.9/0057-aarch64-config.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | Disable the MULTILIB_OSDIRNAMES and other multilib options. | ||
2 | |||
3 | Hard coding the MULTILIB_OSDIRNAMES with ../lib64 is causing problems on | ||
4 | systems where the libdir is NOT set to /lib64. This is allowed by the ABI, as | ||
5 | long as the dynamic loader is present in /lib. | ||
6 | |||
7 | We simply want to use the default rules in gcc to find and configure the | ||
8 | normal libdir. | ||
9 | |||
10 | Signed-off-by: Mark Hatle <mark.hatle@windriver.com> | ||
11 | |||
12 | Index: gcc-4.9.1/gcc/config/aarch64/t-aarch64-linux | ||
13 | =================================================================== | ||
14 | --- gcc-4.9.1.orig/gcc/config/aarch64/t-aarch64-linux | ||
15 | +++ gcc-4.9.1/gcc/config/aarch64/t-aarch64-linux | ||
16 | @@ -21,11 +21,11 @@ | ||
17 | LIB1ASMSRC = aarch64/lib1funcs.asm | ||
18 | LIB1ASMFUNCS = _aarch64_sync_cache_range | ||
19 | |||
20 | -AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be) | ||
21 | -MULTILIB_OSDIRNAMES = .=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu) | ||
22 | -MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu) | ||
23 | +#AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be) | ||
24 | +#MULTILIB_OSDIRNAMES = .=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu) | ||
25 | +#MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu) | ||
26 | |||
27 | # Disable the multilib for linux-gnu targets for the time being; focus | ||
28 | # on the baremetal targets. | ||
29 | -MULTILIB_OPTIONS = | ||
30 | -MULTILIB_DIRNAMES = | ||
31 | +#MULTILIB_OPTIONS = | ||
32 | +#MULTILIB_DIRNAMES = | ||