diff options
author | Alexander Stein <alexander.stein@ew.tq-group.com> | 2024-08-05 11:45:46 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-08-05 09:54:34 -0700 |
commit | d2fb84519563c9c7c9ea1d7a3196a2c4a473d1e8 (patch) | |
tree | 562305e81a5a8c390e39f4a296439f6bac422926 | |
parent | c393973c8516d56d547297902ef27c02d16a54b1 (diff) | |
download | meta-openembedded-d2fb84519563c9c7c9ea1d7a3196a2c4a473d1e8.tar.gz |
luajit: Fix host development package
The 32 Bit host development package needed is libc6-dev:i386, not
libc6-dev-i386.
Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-devtools/luajit/luajit_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/luajit/luajit_git.bb b/meta-oe/recipes-devtools/luajit/luajit_git.bb index 240271d410..4189217541 100644 --- a/meta-oe/recipes-devtools/luajit/luajit_git.bb +++ b/meta-oe/recipes-devtools/luajit/luajit_git.bb | |||
@@ -21,7 +21,7 @@ BBCLASSEXTEND = "native" | |||
21 | # Host luajit needs to be compiled with the same pointer size | 21 | # Host luajit needs to be compiled with the same pointer size |
22 | # If you want to cross-compile to any 32 bit target on an x64 OS, | 22 | # If you want to cross-compile to any 32 bit target on an x64 OS, |
23 | # you need to install the multilib development package (e.g. | 23 | # you need to install the multilib development package (e.g. |
24 | # libc6-dev-i386 on Debian/Ubuntu) and build a 32 bit host part | 24 | # libc6-dev:i386 on Debian/Ubuntu) and build a 32 bit host part |
25 | # (HOST_CC="gcc -m32"). | 25 | # (HOST_CC="gcc -m32"). |
26 | BUILD_CC_ARCH:append = " ${@['-m32',''][d.getVar('SITEINFO_BITS') != '32']}" | 26 | BUILD_CC_ARCH:append = " ${@['-m32',''][d.getVar('SITEINFO_BITS') != '32']}" |
27 | 27 | ||