forked from alisw/alidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aliroot-csa.sh
32 lines (30 loc) · 916 Bytes
/
aliroot-csa.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package: AliRoot-csa
version: "%(short_hash)s"
requires:
- ROOT
- SAS
env:
ALICE_ROOT: "$ALIROOT_ROOT"
source: http://git.cern.ch/pub/AliRoot
write_repo: https://git.cern.ch/reps/AliRoot
tag: master
---
#!/bin/sh
cmake $SOURCEDIR -DCMAKE_INSTALL_PREFIX=$INSTALLROOT \
-DCMAKE_C_COMPILER=`which ccc-analyzer` \
-DCMAKE_CXX_COMPILER=`which c++-analyzer`\
-DCMAKE_Fortran_COMPILER=`which gfortran` \
-DROOTSYS=$ROOT_ROOT \
-DALIEN=$ALIEN_ROOT/alien \
-DOCDB_INSTALL=PLACEHOLDER
case $ARCHITECTURE in
osx*) SONAME=dylib ;;
esac
scan-build -load-plugin $SAS_ROOT/lib/libSas.${SONAME:-so} \
-enable-checker sas.Performance \
-enable-checker sas.CodingConventions.General \
-enable-checker core \
-enable-checker cplusplus \
-enable-checker unix \
-o MyReportDir \
make -k ${JOBS+-j $JOBS} || true