0f796dd004
Update to v4.1.0. Also includes other major packaging changes as follows: There is a new package maintenance workflow - see README.PACKAGING for details. The sibling packages qemu-linux-user and qemu-testsuite are now created with the Build Service's MultiBuild feature. This also necessitates combining the qemu-linux-user changelog content back into qemu's. Luckily the delta there is quite small. Note that the qemu spec file is now that much busier, but added section markers should help reduce the confusion. Also qemu is being enabled for RISCV host compatibility, so some changes are related to that as well. OBS-URL: https://build.opensuse.org/request/show/730437 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=487
31 lines
869 B
Diff
31 lines
869 B
Diff
From: Bruce Rogers <brogers@suse.com>
|
|
Date: Thu, 20 Jun 2019 17:58:37 -0600
|
|
Subject: roms: change cross compiler naming to be suse specific
|
|
|
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
|
---
|
|
roms/edk2-funcs.sh | 10 +++++++++-
|
|
1 file changed, 9 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/roms/edk2-funcs.sh b/roms/edk2-funcs.sh
|
|
index a9fae7ee891bc4cadbe1a3cb3f54..d70bed1729cf0a3ce41ab72df78e 100644
|
|
--- a/roms/edk2-funcs.sh
|
|
+++ b/roms/edk2-funcs.sh
|
|
@@ -113,7 +113,15 @@ qemu_edk2_get_cross_prefix()
|
|
# no cross-compiler needed
|
|
:
|
|
else
|
|
- printf '%s-linux-gnu-\n' "$gcc_arch"
|
|
+ if [ "$emulation_target" == arm ]; then
|
|
+ printf '%s-suse-linux-gnueabi-\n' "$gcc_arch"
|
|
+ else
|
|
+ if [ "$gcc_arch" == i686 ]; then
|
|
+ printf '%s-suse-linux-\n' "i586"
|
|
+ else
|
|
+ printf '%s-suse-linux-\n' "$gcc_arch"
|
|
+ fi
|
|
+ fi
|
|
fi
|
|
}
|
|
|