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