mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
* scons will remain the default build type. * New set of command line switches to control CMake.
9 lines
280 B
Bash
Executable File
9 lines
280 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
num_procs=$(lscpu -p | grep -v '^#' | sort -u -t, -k 2,4 | wc -l) # number of physical cores
|
|
|
|
path=$(cd $(dirname $0) && pwd)
|
|
cd $(dirname $path)
|
|
${path}/Test.py -a -c --test=TxQ -- -j${num_procs}
|
|
${path}/Test.py -a -c -k --test=TxQ --cmake -- -j${num_procs}
|