-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild-RPi.old.sh
executable file
·34 lines (25 loc) · 991 Bytes
/
build-RPi.old.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
if [ "$OS" = "Windows_NT" ]; then
./mingw64.sh
exit 0
fi
# Linux build
make clean || echo clean
rm -f config.status
./autogen.sh || echo done
# Ubuntu 10.04 (gcc 4.4)
# extracflags="-O3 -march=native -Wall -D_REENTRANT -funroll-loops -fvariable-expansion-in-unroller -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16"
# 원본
# # Debian 7.7 / Ubuntu 14.04 (gcc 4.7+)
# extracflags="$extracflags -Ofast -flto -fuse-linker-plugin -ftree-loop-if-convert-stores"
#
# if [ ! "0" = `cat /proc/cpuinfo | grep -c avx` ]; then
# # march native doesn't always works, ex. some Pentium Gxxx (no avx)
# extracflags="$extracflags -march=native"
# fi
#
# ./configure --with-crypto --with-curl CFLAGS="-O2 $extracflags -DUSE_ASM -pg"
# ARM Raspberry Pi
./configure --disable-assembly CFLAGS="-Ofast -march=native" --with-crypto --with-curl
make -j 4
strip -s cpuminer