blob: 1070365ad60a60434eddd193e9917cec1ed9d29a [file] [log] [blame]
#!/bin/bash
. ./.ci/.common.sh
set -xe
for source in "${BUILD_FILES[@]}"
do
filename=$(basename -- "$source")
$CLANG $source $INCLUDE_DIRS $CXXARGS -c -o /tmp/"${filename%.*}.o"
done