mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
13 lines
314 B
Bash
Executable File
13 lines
314 B
Bash
Executable File
#!/bin/sh
|
|
# Allwmake with scan-build (clang)
|
|
|
|
c_compiler="$(command -v "$(wmake -show-c)")"
|
|
cxx_compiler="$(command -v "$(wmake -show-cxx)")"
|
|
|
|
set -x
|
|
|
|
scan-build --use-cc="$c_compiler" --use-c++="$cxx_compiler" \
|
|
./Allwmake "$@"
|
|
|
|
#------------------------------------------------------------------------------
|