summaryrefslogblamecommitdiff
path: root/tools/ci/jobs/mplint.sh
blob: 31cda0b44c29f0e4b7ebd0bf570e726ef1fd942f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



              







                            



                                 

                              

       
                                               



                    
                  




                                 
#!/bin/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

gitclone https://gitlab.com/manaplus mplint.git
cd mplint
run_configure_simple
run_make
cd ..
echo " " >config.h
run_mplint $*

source ./tools/ci/scripts/exit.sh

exit 0