blob: 3c134adc07af42a53dab6b52d8776e244eb331f3 (
plain)
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
|
image: debian/sid
packages:
- gcc-aarch64-linux-gnu
- qemu-user
sources:
- https://git.sr.ht/~mcf/cproc
- https://git.sr.ht/~mcf/qbe
tasks:
- build: |
PATH=$HOME/qbe/obj:$PATH
cd qbe
cat >config.h <<EOF
#define Defasm Gaself
#define Deftgt T_arm64
EOF
make
cd ../cproc
crtbegin=$(aarch64-linux-gnu-gcc -print-file-name=crtbegin.o)
./configure \
--target=aarch64-linux-gnu \
--with-ldso=/usr/aarch64-linux-gnu/lib/ld-linux-aarch64.so.1 \
--with-gcc-libdir="${crtbegin%/*}"
make all check
make bootstrap LDFLAGS='-Wl,-rpath,/usr/aarch64-linux-gnu/lib'
file stage2/cproc stage2/cproc-qbe
triggers:
- action: email
condition: failure
to: "<~mcf/cproc@lists.sr.ht>"
|