diff options
author | Matthew McClintock <msm@freescale.com> | 2012-07-10 04:29:22 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-11 11:35:53 +0100 |
commit | b424a3a31bb71d773a0225917e95e09fde8fec8c (patch) | |
tree | 91e58d5978fce652a3dba5e43adc925122bdb84a /meta/recipes-devtools/gcc | |
parent | fd9a9a2a9ae9087a234b230a44d146ac71eb8add (diff) | |
download | poky-b424a3a31bb71d773a0225917e95e09fde8fec8c.tar.gz |
gcc: gcc-cross-canadian: use correct location for libraries for powerpc64
This fixes the issue where gcc invokes the linker with an incorrect -L
library location and gives up because it can't find libraries. It was
looking in a /lib folder instead of /lib64
(From OE-Core rev: 1b428f0151a5b86332b501871bf4a925b43580a5)
Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.7.inc | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross-canadian_4.7.bb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.7.inc b/meta/recipes-devtools/gcc/gcc-4.7.inc index c7dbc3ccf2..be142a13fb 100644 --- a/meta/recipes-devtools/gcc/gcc-4.7.inc +++ b/meta/recipes-devtools/gcc/gcc-4.7.inc | |||
@@ -1,6 +1,6 @@ | |||
1 | require gcc-common.inc | 1 | require gcc-common.inc |
2 | 2 | ||
3 | PR = "r3" | 3 | PR = "r4" |
4 | 4 | ||
5 | # Third digit in PV should be incremented after a minor release | 5 | # Third digit in PV should be incremented after a minor release |
6 | # happens from this branch on gcc e.g. currently its 4.7.1 | 6 | # happens from this branch on gcc e.g. currently its 4.7.1 |
diff --git a/meta/recipes-devtools/gcc/gcc-cross-canadian_4.7.bb b/meta/recipes-devtools/gcc/gcc-cross-canadian_4.7.bb index efa345fa7b..308e6f5234 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-canadian_4.7.bb +++ b/meta/recipes-devtools/gcc/gcc-cross-canadian_4.7.bb | |||
@@ -9,8 +9,8 @@ DEPENDS += "gmp-nativesdk mpfr-nativesdk libmpc-nativesdk elfutils-nativesdk" | |||
9 | RDEPENDS_${PN} += "mpfr-nativesdk libmpc-nativesdk elfutils-nativesdk" | 9 | RDEPENDS_${PN} += "mpfr-nativesdk libmpc-nativesdk elfutils-nativesdk" |
10 | 10 | ||
11 | SYSTEMHEADERS = "/usr/include" | 11 | SYSTEMHEADERS = "/usr/include" |
12 | SYSTEMLIBS = "/lib/" | 12 | SYSTEMLIBS = "${target_base_libdir}/" |
13 | SYSTEMLIBS1 = "/usr/lib/" | 13 | SYSTEMLIBS1 = "${target_libdir}/" |
14 | 14 | ||
15 | EXTRA_OECONF += "--disable-libunwind-exceptions --disable-libssp \ | 15 | EXTRA_OECONF += "--disable-libunwind-exceptions --disable-libssp \ |
16 | --disable-libgomp --disable-libmudflap \ | 16 | --disable-libgomp --disable-libmudflap \ |