build: remove QEMU workaround for aarch64 (!1814)

QEMU is now at v4.0.0 and the issue was fixed upstream. Fixes #546.
This commit is contained in:
Luca Weiss 2019-09-18 18:13:39 +02:00 committed by Oliver Smith
parent 5a97c60256
commit 0f7678f033
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
4 changed files with 0 additions and 117 deletions

View file

@ -92,11 +92,5 @@ def init(args, suffix="native"):
"s/^ERROR_CLEANUP=.*/ERROR_CLEANUP=''/",
"/etc/abuild.conf"], suffix)
# QEMU workaround (aarch64 only)
arch = pmb.parse.arch.from_chroot_suffix(args, suffix)
emulate = pmb.parse.arch.cpu_emulation_required(args, arch)
if emulate and arch == "aarch64":
pmb.build.qemu_workaround_aarch64(args, suffix)
# Mark the chroot as initialized
pmb.chroot.root(args, ["touch", marker], suffix)