diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-02-23 22:09:33 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-03-01 11:12:14 -0800 |
commit | 1a4116592f570d0e35736ed5e59cd5e372f76c4c (patch) | |
tree | a78c135185f307e5409dd3f33600f01c54ef81e8 | |
parent | 32de0cf88de07fad392580913fe4e2f19915a021 (diff) | |
download | meta-clang-1a4116592f570d0e35736ed5e59cd5e372f76c4c.tar.gz |
bcc: Disable luaJIT on ppc64
ppc64 port is not yet available, its proposed here
https://github.com/LuaJIT/LuaJIT/pull/54
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.17.0.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.17.0.bb b/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.17.0.bb index 03d3236..5366db9 100644 --- a/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.17.0.bb +++ b/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.17.0.bb | |||
@@ -8,10 +8,14 @@ inherit cmake python3native manpages | |||
8 | DEPENDS += "bison-native \ | 8 | DEPENDS += "bison-native \ |
9 | flex-native \ | 9 | flex-native \ |
10 | elfutils \ | 10 | elfutils \ |
11 | luajit \ | 11 | ${LUAJIT} \ |
12 | clang \ | 12 | clang \ |
13 | " | 13 | " |
14 | 14 | ||
15 | LUAJIT ?= "luajit" | ||
16 | LUAJIT_powerpc64le = "" | ||
17 | LUAJIT_powerpc64 = "" | ||
18 | |||
15 | RDEPENDS_${PN} += "bash python3 python3-core python3-setuptools xz" | 19 | RDEPENDS_${PN} += "bash python3 python3-core python3-setuptools xz" |
16 | 20 | ||
17 | SRC_URI = "gitsm://github.com/iovisor/bcc \ | 21 | SRC_URI = "gitsm://github.com/iovisor/bcc \ |