diff options
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-configure-common.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-configure-common.inc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc index 869d1b6d60..2ddc3d7c9f 100644 --- a/meta/recipes-devtools/gcc/gcc-configure-common.inc +++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc | |||
@@ -61,9 +61,9 @@ SYSTEMHEADERS = "${target_includedir}" | |||
61 | SYSTEMLIBS = "${target_base_libdir}/" | 61 | SYSTEMLIBS = "${target_base_libdir}/" |
62 | SYSTEMLIBS1 = "${target_libdir}/" | 62 | SYSTEMLIBS1 = "${target_libdir}/" |
63 | 63 | ||
64 | do_configure_prepend () { | 64 | do_headerfix () { |
65 | # Change the default dynamic linker path, only useful for SDK, other's value | 65 | # Change the default dynamic linker path, in case $base_liddir is non-standard |
66 | # are not changed according to the SYSTEMLIBS_DIR | 66 | # (e.g. in multilib or sdk cases) |
67 | # | 67 | # |
68 | # We want something like the following: | 68 | # We want something like the following: |
69 | # #define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2" | 69 | # #define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2" |
@@ -72,7 +72,11 @@ do_configure_prepend () { | |||
72 | # | 72 | # |
73 | sed -i ${S}/gcc/config/*/linux*.h -e \ | 73 | sed -i ${S}/gcc/config/*/linux*.h -e \ |
74 | 's#\(GLIBC_DYNAMIC_LINKER[^ ]*\) \( *"/lib.*\)/\(.*\)#\1 SYSTEMLIBS_DIR "\3#' | 74 | 's#\(GLIBC_DYNAMIC_LINKER[^ ]*\) \( *"/lib.*\)/\(.*\)#\1 SYSTEMLIBS_DIR "\3#' |
75 | } | ||
75 | 76 | ||
77 | addtask headerfix after do_unpack before do_patch | ||
78 | |||
79 | do_configure_prepend () { | ||
76 | # teach gcc to find correct target includedir when checking libc ssp support | 80 | # teach gcc to find correct target includedir when checking libc ssp support |
77 | mkdir -p ${B}/gcc | 81 | mkdir -p ${B}/gcc |
78 | echo "NATIVE_SYSTEM_HEADER_DIR = ${SYSTEMHEADERS}" > ${B}/gcc/t-oe | 82 | echo "NATIVE_SYSTEM_HEADER_DIR = ${SYSTEMHEADERS}" > ${B}/gcc/t-oe |