- .fdo.container-build@debian
- .container
variables:
- FDO_DISTRIBUTION_TAG: &x86_build "2020-05-18-baremetal"
+ FDO_DISTRIBUTION_TAG: &x86_build "2020-05-18-baremetal-2"
.use-x86_build:
variables:
- .fdo.container-build@debian@arm64v8
- .container
variables:
- FDO_DISTRIBUTION_TAG: &arm_build "2020-05-14-baremetal-2"
+ FDO_DISTRIBUTION_TAG: &arm_build "2020-05-14-baremetal-3"
.use-arm_build:
variables:
# Determine if we're in a cross build.
if [[ -e /cross_file-$DEBIAN_ARCH.txt ]]; then
EXTRA_MESON_ARGS="--cross-file /cross_file-$DEBIAN_ARCH.txt"
+ EXTRA_CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=/toolchain-$DEBIAN_ARCH.cmake"
export ARCH=${KERNEL_ARCH}
export CROSS_COMPILE="${GCC_ARCH}-"
############### Build dEQP
-EXTRA_CMAKE_ARGS="-DCMAKE_C_COMPILER=${GCC_ARCH}-gcc -DCMAKE_CXX_COMPILER=${GCC_ARCH}-g++"
STRIP_CMD="${GCC_ARCH}-strip"
. .gitlab-ci/build-deqp-gl.sh
mv /deqp /lava-files/rootfs-${DEBIAN_ARCH}/.
fi
# Rely on qemu-user being configured in binfmt_misc on the host
sed -i -e '/\[properties\]/a\' -e "needs_exe_wrapper = False" "$cross_file"
+
+# Set up cmake cross compile toolchain file for dEQP builds
+toolchain_file="/toolchain-$arch.cmake"
+if [[ "$arch" = "arm64" ]]; then
+ GCC_ARCH="aarch64-linux-gnu"
+ DE_CPU="DE_CPU_ARM_64"
+ CMAKE_ARCH=arm
+elif [[ "$arch" = "armhf" ]]; then
+ GCC_ARCH="arm-linux-gnueabihf"
+ DE_CPU="DE_CPU_ARM"
+ CMAKE_ARCH=arm
+fi
+
+if [[ -n "$GCC_ARCH" ]]; then
+ echo "set(CMAKE_SYSTEM_NAME Linux)" > "$toolchain_file"
+ echo "set(CMAKE_SYSTEM_PROCESSOR arm)" >> "$toolchain_file"
+ echo "set(CMAKE_C_COMPILER /usr/lib/ccache/$GCC_ARCH-gcc)" >> "$toolchain_file"
+ echo "set(CMAKE_CXX_COMPILER /usr/lib/ccache/$GCC_ARCH-g++)" >> "$toolchain_file"
+ echo "set(ENV{PKG_CONFIG} \"/usr/bin/$GCC_ARCH-pkg-config\")" >> "$toolchain_file"
+ echo "set(DE_CPU $DE_CPU)" >> "$toolchain_file"
+fi