cloud-sat/build.sh

20 lines
269 B
Bash
Raw Normal View History

2023-03-26 19:15:17 +08:00
#!/bin/bash
COMPILE_THREADS=16
# build kissat
2023-03-27 14:15:00 +08:00
# cd kissat-inc
# ./configure
# make -j $COMPILE_THREADS
# cd ..
2023-03-26 19:15:17 +08:00
# build and copy light-solver
make -C src-light-solver -j $COMPILE_THREADS
# build and copy light-master
2023-03-27 14:15:00 +08:00
make -C src-light-master -j $COMPILE_THREADS