summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2021-12-01 17:41:35 +0100
committerBruce Ashfield <bruce.ashfield@gmail.com>2021-12-01 23:02:58 -0500
commita395014a7d86ba30389dcdfd8759eabe63c0706b (patch)
tree4185b824403a588ea76cba0bf6341b0afe4f848f
parentad10cb7cecbcbf0cd05fb9f6fc6a3e4d6aad75da (diff)
downloadmeta-virtualization-a395014a7d86ba30389dcdfd8759eabe63c0706b.tar.gz
dev86: work on all hosts, other cleanups
Remove COMPATIBLE_HOST, whilst this is an x86 assembler there's nothing to stop you building it on or for arm64 and assembling x86 code. Override INEXE so that binaries are not stripped and remove INSANE_SKIP. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-extended/dev86/dev86_git.bb5
1 files changed, 1 insertions, 4 deletions
diff --git a/recipes-extended/dev86/dev86_git.bb b/recipes-extended/dev86/dev86_git.bb
index 9488d906..ad7a0dfd 100644
--- a/recipes-extended/dev86/dev86_git.bb
+++ b/recipes-extended/dev86/dev86_git.bb
@@ -21,7 +21,7 @@ S = "${WORKDIR}/git"
21DEPENDS = "gperf-native dev86-native" 21DEPENDS = "gperf-native dev86-native"
22 22
23BBCLASSEXTEND = "native" 23BBCLASSEXTEND = "native"
24EXTRA_OEMAKE = "VERSION=${BASE_PV} PREFIX=${prefix} DIST=${D} LDFLAGS='${LDFLAGS}'" 24EXTRA_OEMAKE = "VERSION=${BASE_PV} PREFIX=${prefix} DIST=${D} LDFLAGS='${LDFLAGS}' INEXE=''"
25 25
26do_compile() { 26do_compile() {
27 # always regenerate token1.h, token2.h for deterministic behavior 27 # always regenerate token1.h, token2.h for deterministic behavior
@@ -45,7 +45,4 @@ do_install_append_class-native() {
45 install -v -m 755 ${B}/ifdefg ${D}${bindir} 45 install -v -m 755 ${B}/ifdefg ${D}${bindir}
46} 46}
47 47
48COMPATIBLE_HOST = "(i.86|x86_64).*-linux"
49FILES_${PN} += "${libdir}/bcc" 48FILES_${PN} += "${libdir}/bcc"
50
51INSANE_SKIP_${PN} = "already-stripped"