We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc8e1cb commit b6fc552Copy full SHA for b6fc552
jenkins/createArmhfMuslGcc.groovy
@@ -5,7 +5,12 @@ def call(jenkins) {
5
]
6
Closure action = {
7
sh """/bin/bash -ex
8
- echo "hello world!"
+ git clone --depth 1 https://github.com/richfelker/musl-cross-make.git build/
9
+ cp config.mak build/config.mak && cd build/
10
+ export CFLAGS="-fPIC -g1 \$CFLAGS"
11
+ export TARGET=arm-linux-musleabihf
12
+ make -j4
13
+ make install
14
"""
15
}
16
0 commit comments