1#!/bin/bash 2 3set -ex 4 5# Need an unreleased version of Waffle for surfaceless support in apitrace 6# Replace this build with the Debian package once that's possible 7 8WAFFLE_VERSION="e3c995d9a2693b687501715b6550619922346089" 9git clone https://gitlab.freedesktop.org/mesa/waffle.git --single-branch --no-checkout /waffle 10pushd /waffle 11git checkout "$WAFFLE_VERSION" 12cmake -B_build -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_BUILD_TYPE=Release $EXTRA_CMAKE_ARGS . 13make -C _build install 14mkdir -p build/lib build/bin 15cp _build/lib/libwaffle-1.so build/lib/libwaffle-1.so.0 16cp _build/bin/wflinfo build/bin/wflinfo 17${STRIP_CMD:-strip} build/lib/* build/bin/* 18find . -not -path './build' -not -path './build/*' -delete 19popd 20 21APITRACE_VERSION="9.0" 22 23git clone https://github.com/apitrace/apitrace.git --single-branch --no-checkout /apitrace 24pushd /apitrace 25git checkout "$APITRACE_VERSION" 26# Note: The cmake stuff for waffle in apitrace fails to use waffle's library 27# directory. Just force the issue here. 28env LDFLAGS="-L/usr/local/lib" \ 29 cmake -G Ninja -B_build -H. -DCMAKE_BUILD_TYPE=Release -DENABLE_GUI=False -DENABLE_WAFFLE=on -DWaffle_DIR=/usr/local/lib/cmake/Waffle/ $EXTRA_CMAKE_ARGS 30ninja -C _build 31mkdir build 32cp _build/apitrace build 33cp _build/eglretrace build 34${STRIP_CMD:-strip} build/* 35find . -not -path './build' -not -path './build/*' -delete 36popd 37