blob: d8518d6b6a112aee828135de96a90741bc5e73f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# target Pentium 3 without SSE2
eval "$(
declare -f prepare | \
sed '
/autogen.sh/ i sed -i \"s/cargo build/RUSTFLAGS=\\"-C target-cpu=pentium3\\" cargo build/g\" Makefile.am
'
)"
eval "$(
declare -f build | \
sed '
s/make/make V=1/
'
)"
|