aboutsummaryrefslogtreecommitdiffstats
path: root/packages/perl/perl.inc
diff options
context:
space:
mode:
authorJamie Lenehan <lenehan@twibble.org>2006-09-29 08:59:03 +0000
committerJamie Lenehan <lenehan@twibble.org>2006-09-29 08:59:03 +0000
commitf0e5f6e2d7e39e5dab9e76cc200804b1948670d3 (patch)
tree7355c373acf385686b179b21078ee2db5bd233df /packages/perl/perl.inc
parent32cfcbd4b3a9db64adbe98fa84363f2352bec05e (diff)
downloadopenembedded-f0e5f6e2d7e39e5dab9e76cc200804b1948670d3.tar.gz
perl: More shared library fixes for sh3/sh4, this time for the shared
libraries used by standard perl modules. This was picking up LD from OE which as the linking when we need to use gcc to link. Override LD when calling oe_make to force the use of gcc to link.
Diffstat (limited to 'packages/perl/perl.inc')
-rw-r--r--packages/perl/perl.inc7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/perl/perl.inc b/packages/perl/perl.inc
index ad0562d3a4..4cddcdb18a 100644
--- a/packages/perl/perl.inc
+++ b/packages/perl/perl.inc
@@ -41,7 +41,12 @@ do_configure() {
do_compile() {
sed -i -e 's|/usr/include|${STAGING_INCDIR}|g' ext/Errno/Errno_pm.PL
cd Cross
- oe_runmake perl
+ # You must use gcc to link on sh
+ OPTIONS=""
+ if test ${TARGET_ARCH} = "sh3" -o ${TARGET_ARCH} = "sh4"; then
+ OPTIONS="LD=${TARGET_ARCH}-${TARGET_OS}-gcc"
+ fi
+ oe_runmake perl $OPTIONS
}
do_install() {