We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fedbb9 commit 31afd94Copy full SHA for 31afd94
scripts/generate-lv2.sh
@@ -44,6 +44,21 @@ if [ -z "${MESON_EXE_WRAPPER}" ]; then
44
MESON_EXE_WRAPPER="qemu-x86_64-static"
45
fi
46
47
+ elif echo "${fileout}" | grep -q "64-bit LSB.*PowerPC"; then
48
+ if [ "$(uname -m)" != "ppc64le" ]; then
49
+ MESON_EXE_WRAPPER="qemu-ppc64le-static"
50
+ fi
51
+
52
+ elif echo "${fileout}" | grep -q "64-bit MSB.*PowerPC"; then
53
+ if [ "$(uname -m)" != "ppc64" ]; then
54
+ MESON_EXE_WRAPPER="qemu-ppc64-static"
55
56
57
+ elif echo "${fileout}" | grep -q "32-bit MSB.*PowerPC"; then
58
+ if [ "$(uname -m)" != "ppc" ] && [ "$(uname -m)" != "ppc64" ]; then
59
+ MESON_EXE_WRAPPER="qemu-ppc-static"
60
61
62
else
63
echo "unrecognized file output: ${fileout}"
64
exit 1
0 commit comments