File: compile.sh

package info (click to toggle)
vecgeom 1.2.8%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 24,016 kB
  • sloc: cpp: 88,803; ansic: 6,888; python: 1,035; sh: 582; sql: 538; makefile: 23
file content (8 lines) | stat: -rwxr-xr-x 393 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#!/bin/bash
# store build in some random place
rm -rf build
mkdir build
cd build
cmake ../../ -DVECGEOM_GEANT4=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc -DCMAKE_BUILD_TYPE=Release -DVECGEOM_BACKEND=Vc -DVECGEOM_TEST_BENCHMARK=ON -DVECGEOM_ROOT=ON -DVECGEOM_VECTOR=avx -DVECTOR=avx -DVc_DIR=/home/swenzel/local/vc0.8/lib/cmake/Vc
make -j 8
cd ../../