Add some quick local {cross}build scripts
Simple wrappers around using rpmbuild to turn off various things. In th arm cases, we can't cross build perf or tools anyway.
This commit is contained in:
parent
59a51dd300
commit
a2cb465af3
3
scripts/cross-aarch64
Executable file
3
scripts/cross-aarch64
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
rpmbuild --target aarch64 --with cross --without debuginfo --without perf --without tools --define "__strip /usr/bin/aarch64-linux-gnu-strip" --rebuild $1
|
3
scripts/cross-arm
Executable file
3
scripts/cross-arm
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
rpmbuild --target armv7hl --with cross --without debuginfo --without perf --without tools --define "__strip /usr/bin/arm-linux-gnu-strip" --rebuild $1
|
3
scripts/fast-x86_64
Executable file
3
scripts/fast-x86_64
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
rpmbuild --target x86_64 --without debuginfo --without perf --without tools --rebuild $1
|
Loading…
Reference in New Issue
Block a user