mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2025-01-13 09:50:06 +00:00
a715b1b405
This change improves spirv-fuzz CMake code to be more compatible with other projects that might want to include spirv-fuzz as a sub-project. * Add a CMake option for building spirv-fuzz. * We now check if protobuf targets are already available. * We no longer specify `-DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_USE_UNALIGNED=0`; a newer version of protobuf does not require this. Note that we probably should have specified this for protobuf targets as well, but this is no longer needed. * Updated protobuf version in Kokoro scripts and README.md.
105 lines
3.1 KiB
Bash
105 lines
3.1 KiB
Bash
#!/bin/bash
|
|
# Copyright (c) 2018 Google LLC.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
# Linux Build Script.
|
|
|
|
# Fail on any error.
|
|
set -e
|
|
# Display commands being run.
|
|
set -x
|
|
|
|
BUILD_ROOT=$PWD
|
|
SRC=$PWD/github/SPIRV-Tools
|
|
CONFIG=$1
|
|
COMPILER=$2
|
|
|
|
SKIP_TESTS="False"
|
|
BUILD_TYPE="Debug"
|
|
|
|
CMAKE_C_CXX_COMPILER=""
|
|
if [ $COMPILER = "clang" ]
|
|
then
|
|
PATH=/usr/lib/llvm-3.8/bin:$PATH
|
|
CMAKE_C_CXX_COMPILER="-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++"
|
|
fi
|
|
|
|
# Possible configurations are:
|
|
# ASAN, COVERAGE, RELEASE, DEBUG, DEBUG_EXCEPTION, RELEASE_MINGW
|
|
|
|
if [ $CONFIG = "RELEASE" ] || [ $CONFIG = "RELEASE_MINGW" ]
|
|
then
|
|
BUILD_TYPE="RelWithDebInfo"
|
|
fi
|
|
|
|
ADDITIONAL_CMAKE_FLAGS=""
|
|
if [ $CONFIG = "ASAN" ]
|
|
then
|
|
ADDITIONAL_CMAKE_FLAGS="-DSPIRV_USE_SANITIZER=address,bounds,null"
|
|
[ $COMPILER = "clang" ] || { echo "$CONFIG requires clang"; exit 1; }
|
|
elif [ $CONFIG = "COVERAGE" ]
|
|
then
|
|
ADDITIONAL_CMAKE_FLAGS="-DENABLE_CODE_COVERAGE=ON"
|
|
SKIP_TESTS="True"
|
|
elif [ $CONFIG = "DEBUG_EXCEPTION" ]
|
|
then
|
|
ADDITIONAL_CMAKE_FLAGS="-DDISABLE_EXCEPTIONS=ON -DDISABLE_RTTI=ON"
|
|
elif [ $CONFIG = "RELEASE_MINGW" ]
|
|
then
|
|
ADDITIONAL_CMAKE_FLAGS="-Dgtest_disable_pthreads=ON -DCMAKE_TOOLCHAIN_FILE=$SRC/cmake/linux-mingw-toolchain.cmake"
|
|
SKIP_TESTS="True"
|
|
fi
|
|
|
|
# Get NINJA.
|
|
wget -q https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip
|
|
unzip -q ninja-linux.zip
|
|
export PATH="$PWD:$PATH"
|
|
|
|
cd $SRC
|
|
git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
|
|
git clone --depth=1 https://github.com/google/googletest external/googletest
|
|
git clone --depth=1 https://github.com/google/effcee external/effcee
|
|
git clone --depth=1 https://github.com/google/re2 external/re2
|
|
git clone --depth=1 --branch v3.13.0 https://github.com/protocolbuffers/protobuf external/protobuf
|
|
|
|
mkdir build && cd $SRC/build
|
|
|
|
# Invoke the build.
|
|
BUILD_SHA=${KOKORO_GITHUB_COMMIT:-$KOKORO_GITHUB_PULL_REQUEST_COMMIT}
|
|
echo $(date): Starting build...
|
|
cmake -DPYTHON_EXECUTABLE:FILEPATH=/usr/bin/python3 -GNinja -DCMAKE_INSTALL_PREFIX=$KOKORO_ARTIFACTS_DIR/install -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DRE2_BUILD_TESTING=OFF -DSPIRV_BUILD_FUZZER=ON $ADDITIONAL_CMAKE_FLAGS $CMAKE_C_CXX_COMPILER ..
|
|
|
|
echo $(date): Build everything...
|
|
ninja
|
|
echo $(date): Build completed.
|
|
|
|
if [ $CONFIG = "COVERAGE" ]
|
|
then
|
|
echo $(date): Check coverage...
|
|
ninja report-coverage
|
|
echo $(date): Check coverage completed.
|
|
fi
|
|
|
|
echo $(date): Starting ctest...
|
|
if [ $SKIP_TESTS = "False" ]
|
|
then
|
|
ctest -j4 --output-on-failure --timeout 300
|
|
fi
|
|
echo $(date): ctest completed.
|
|
|
|
# Package the build.
|
|
ninja install
|
|
cd $KOKORO_ARTIFACTS_DIR
|
|
tar czf install.tgz install
|