mirror of
https://github.com/JayDDee/cpuminer-opt.git
synced 2025-09-17 23:44:27 +00:00
10 lines
182 B
Bash
Executable File
10 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
|
|
make distclean || echo clean
|
|
rm -f config.status
|
|
./autogen.sh || echo done
|
|
CFLAGS="-O3 -march=native -Wall" ./configure --with-curl
|
|
make -j $(nproc)
|
|
|
|
#strip -s cpuminer
|