automation: build more stuff on x86 with docker
authorWei Liu <wei.liu2@citrix.com>
Mon, 9 Jul 2018 15:11:15 +0000 (16:11 +0100)
committerWei Liu <wei.liu2@citrix.com>
Tue, 10 Jul 2018 07:24:01 +0000 (08:24 +0100)
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Reviewed-by: Doug Goldstein <cardoe@cardoe.com>
automation/scripts/build

index b90fc43d26d07f06947618b3af74787028908101..b9e4c1e32979ca58c834d8bd2def7581ee85d832 100755 (executable)
@@ -11,8 +11,6 @@ fi
 
 # build up our configure options
 cfgargs=()
-cfgargs+=("--disable-stubdom") # more work needed into building this
-cfgargs+=("--disable-rombios")
 cfgargs+=("--enable-docs")
 
 # SeaBIOS cannot be built with clang
@@ -20,9 +18,7 @@ if [[ "${CC}" == "clang" ]]; then
     cfgargs+=("--with-system-seabios=/usr/share/seabios/bios.bin")
 fi
 
-if [[ "${XEN_TARGET_ARCH}" == "x86_64" ]]; then
-    cfgargs+=("--enable-tools")
-else
+if [[ "${XEN_TARGET_ARCH}" == "arm64" || "${XEN_TARGET_ARCH}" == "arm32" ]]; then
     cfgargs+=("--disable-tools") # we don't have the cross depends installed
 fi