mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
luajit: Fix build with SSTATE enabled
luajit does not honor standard CC variables so when its built from shared state it does not compile because --sysroot is wrong. This patch fixes the problem by passing the TOOLCHAIN_OPTONS to appropriate flags so that it gets the correct sysroot value Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
f423ccb8a7
commit
f841ddbd24
|
|
@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=9511885992e4900014e3b13ca6372b7d"
|
|||
HOMEPAGE = "http://luajit.org"
|
||||
|
||||
DEPENDS += "lua5.1"
|
||||
PR = "r1"
|
||||
PR = "r2"
|
||||
SRC_URI = "http://luajit.org/download/LuaJIT-${PV}.tar.gz \
|
||||
file://disable_lj_vm_foldarith_for_spe.patch \
|
||||
"
|
||||
|
|
@ -20,7 +20,7 @@ do_configure_prepend() {
|
|||
sed -i -e s:/lib$:${base_libdir}:g ${S}/Makefile
|
||||
}
|
||||
|
||||
EXTRA_OEMAKE = 'CROSS=${HOST_PREFIX}'
|
||||
EXTRA_OEMAKE = 'CROSS=${HOST_PREFIX} TARGET_CFLAGS="${TOOLCHAIN_OPTIONS}" TARGET_LDFLAGS="${TOOLCHAIN_OPTIONS}" TARGET_SHLDFLAGS="${TOOLCHAIN_OPTIONS}"'
|
||||
EXTRA_OEMAKE_append_powerpc = ' HOST_CC="${BUILD_CC} -m32"'
|
||||
EXTRA_OEMAKE_append_x86-64 = ' HOST_CC="${BUILD_CC}"'
|
||||
EXTRA_OEMAKE_append_i586 = ' HOST_CC="${BUILD_CC} -m32"'
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user