blob: d4cd1726aa54a0f1695f7ca2c35f61b63b55e3fc (
plain) (
tree)
|
|
#!/bin/bash
export CC=clang
export CXX=clang++
if [ "$NEWCC" != "" ]; then
export CC="$NEWCC"
fi
if [ "$NEWCXX" != "" ]; then
export CXX="$NEWCXX"
fi
export LOGFILE=$1.log
source ./tools/ci/scripts/init.sh
do_init
run_configure --enable-werror
run_make
source ./tools/ci/scripts/exit.sh
exit 0
|