diff options
-rw-r--r-- | .builds/debian-aarch64.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.builds/debian-aarch64.yml b/.builds/debian-aarch64.yml new file mode 100644 index 0000000..2d4f176 --- /dev/null +++ b/.builds/debian-aarch64.yml @@ -0,0 +1,25 @@ +image: debian/sid +packages: +- gcc-aarch64-linux-gnu +- qemu-user +sources: +- https://git.sr.ht/~mcf/cc +- https://git.sr.ht/~mcf/qbe +environment: + PATH: $HOME/qbe/obj:$PATH +tasks: +- build: | + cd qbe + cat >config.h <<EOF + #define Defasm Gaself + #define Deftgt T_arm64 + EOF + make + cd ../cc + ./configure \ + --target=aarch64-linux-gnu \ + --with-ldso=/usr/aarch64-linux-gnu/lib/ld-linux-aarch64.so.1 \ + --with-gcc-libdir=/usr/lib/gcc-cross/aarch64-linux-gnu/8 + make all check + make bootstrap LDFLAGS='-Wl,-rpath,/usr/aarch64-linux-gnu/lib' + file stage2/cc stage2/cc-qbe |