diff options
| author | Nikolai Aleksandrovich Pavlov <kp-pav@yandex.ru> | 2017-07-04 19:27:12 +0300 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-04 19:27:12 +0300 | 
| commit | 957a6506ef4672f2aa3df515bf9d971b7fc968f4 (patch) | |
| tree | f15f66fb7a379189eb672d4934c06ffa9ef27d73 /scripts/pvscheck.sh | |
| parent | 5214798cfcea31c286f20978230746e49af73e37 (diff) | |
| parent | aa3e3b4ca641cd87b1c051f740f16bd11f57197d (diff) | |
| download | rneovim-957a6506ef4672f2aa3df515bf9d971b7fc968f4.tar.gz rneovim-957a6506ef4672f2aa3df515bf9d971b7fc968f4.tar.bz2 rneovim-957a6506ef4672f2aa3df515bf9d971b7fc968f4.zip | |
Merge pull request #6961 from ZyX-I/pvscheck-cc
pvscheck: Add --environment-cc switch
Diffstat (limited to 'scripts/pvscheck.sh')
| -rwxr-xr-x | scripts/pvscheck.sh | 26 | 
1 files changed, 19 insertions, 7 deletions
| diff --git a/scripts/pvscheck.sh b/scripts/pvscheck.sh index dfdc539bf9..e4536b3dce 100755 --- a/scripts/pvscheck.sh +++ b/scripts/pvscheck.sh @@ -19,8 +19,11 @@ get_jobs_num() {  help() {    echo 'Usage:' -  echo '  pvscheck.sh [--pvs URL] [--deps] [target-directory [branch]]' -  echo '  pvscheck.sh [--pvs URL] [--recheck|--only-analyse] [target-directory]' +  echo '  pvscheck.sh [--pvs URL] [--deps] [--environment-cc]' +  echo '              [target-directory [branch]]' +  echo '  pvscheck.sh [--pvs URL] [--recheck] [--environment-cc]' +  echo '              [target-directory]' +  echo '  pvscheck.sh [--pvs URL] --only-analyse [target-directory]'    echo '  pvscheck.sh [--pvs URL] --pvs-install {target-directory}'    echo '  pvscheck.sh --patch [--only-build]'    echo @@ -35,6 +38,9 @@ help() {    echo '            Without this it assumes all dependencies are already'    echo '            installed.'    echo +  echo '    --environment-cc: (for regular run and --recheck) Do not export' +  echo '                      CC=clang. Build is still run with CFLAGS=-O0.' +  echo    echo '    --only-build: (for --patch) Only patch files in ./build directory.'    echo    echo '    --pvs-install: Only install PVS-studio to the specified location.' @@ -270,8 +276,11 @@ install_pvs() {(  create_compile_commands() {(    local tgt="$1" ; shift    local deps="$1" ; shift +  local environment_cc="$1" ; shift -  export CC=clang +  if test -z "$environment_cc" ; then +    export CC=clang +  fi    export CFLAGS=' -O0 '    if test -z "$deps" ; then @@ -356,19 +365,21 @@ do_check() {    local branch="$1" ; shift    local pvs_url="$1" ; shift    local deps="$1" ; shift +  local environment_cc="$1" ; shift    git clone --branch="$branch" . "$tgt"    install_pvs "$tgt" "$pvs_url" -  do_recheck "$tgt" "$deps" +  do_recheck "$tgt" "$deps" "$environment_cc"  }  do_recheck() {    local tgt="$1" ; shift    local deps="$1" ; shift +  local environment_cc="$1" ; shift -  create_compile_commands "$tgt" "$deps" +  create_compile_commands "$tgt" "$deps" "$environment_cc"    do_analysis "$tgt"  } @@ -408,6 +419,7 @@ main() {        only-analyse store_const \        pvs-install store_const \        deps store_const \ +      environment-cc store_const \        -- \        'modify realdir tgt "$PWD/../neovim-pvs"' \        'store branch master' \ @@ -426,11 +438,11 @@ main() {    elif test -n "$pvs_install" ; then      install_pvs "$tgt" "$pvs_url"    elif test -n "$recheck" ; then -    do_recheck "$tgt" "$deps" +    do_recheck "$tgt" "$deps" "$environment_cc"    elif test -n "$only_analyse" ; then      do_analysis "$tgt"    else -    do_check "$tgt" "$branch" "$pvs_url" "$deps" +    do_check "$tgt" "$branch" "$pvs_url" "$deps" "$environment_cc"    fi  } | 
