From 0f055c56fb9fa67206a0249535098fb9e8c8061f Mon Sep 17 00:00:00 2001 From: Rob Herring Date: Thu, 12 Oct 2017 09:51:28 -0500 Subject: robher-aosp: only build Intel drivers on x86 The Intel drivers now depend on x86 compiler builtins, so disable them on non-x86. Change-Id: I30d2afbbec57903b73e0a1da11b05bda4ccb1aac Signed-off-by: Rob Herring --- robher-aosp.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'robher-aosp.yaml') diff --git a/robher-aosp.yaml b/robher-aosp.yaml index 58640e349f..f9b7592b0b 100644 --- a/robher-aosp.yaml +++ b/robher-aosp.yaml @@ -94,10 +94,12 @@ cd ../.. source build/envsetup.sh - for arch in arm64 x86_64; do - lunch linaro_${arch}-userdebug - make -k -j"$(nproc)" gallium_dri i915_dri i965_dri libGLES_mesa || { true; failed=1; } - done + + lunch linaro_arm64-userdebug + make -k -j"$(nproc)" gallium_dri libGLES_mesa || { true; failed=1; } + + lunch linaro_x86_64-userdebug + make -k -j"$(nproc)" gallium_dri i915_dri i965_dri libGLES_mesa || { true; failed=1; } ###### Don't care about artifacts for now ###### echo "Build for mesa rev ${rev} finished - ret ${failed}" -- cgit v1.2.3