From: Wei Liu Date: Wed, 7 Nov 2018 12:31:49 +0000 (+0000) Subject: automation: lift tools build restriction in build script X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~2969 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=15410d8fc8d6e63ab138a5c47427f418a43a1c56;p=xen.git automation: lift tools build restriction in build script The restrictions are mostly from Travis CI days when cross-compilation was not feasible. Now we will be building natively on Arm, remove those lines. Signed-off-by: Wei Liu Acked-by: Doug Goldstein --- diff --git a/automation/scripts/build b/automation/scripts/build index ad848dfd00..48e398ea20 100755 --- a/automation/scripts/build +++ b/automation/scripts/build @@ -22,12 +22,6 @@ if [[ "${CC}" == "clang" ]]; then cfgargs+=("--disable-stubdom") fi -if [[ "${XEN_TARGET_ARCH}" == "arm64" || "${XEN_TARGET_ARCH}" == "arm32" ]]; then - cfgargs+=("--disable-tools") # we don't have the cross depends installed -elif [[ "${CC}" != "clang" ]]; then - cfgargs+=("--enable-ovmf") # build ovmf with gcc on x86, arm doesn't use in-tree ovmf -fi - ./configure "${cfgargs[@]}" make -j$(nproc) dist