blob: 573cd1c85c8e9c503968626124643d24e732ccf9 (
plain) (
tree)
|
|
#!/usr/bin/env bash
export CC=gcc
export CXX=g++
if [ "$NEWCC" != "" ]; then
export CC="$NEWCC"
fi
if [ "$NEWCXX" != "" ]; then
export CXX="$NEWCXX"
fi
export LOGFILE=mplint_po.log
source ./tools/ci/scripts/init.sh
export CXXFLAGS="-std=gnu++11"
do_init
rm -rf mplint || true
gitclone https://git.themanaworld.org/mana mplint.git
cd mplint
run_configure_simple
run_make
cd ..
echo " " >config.h
for task in "$@"; do
run_mplint $task
done
source ./tools/ci/scripts/exit.sh
exit 0
|