Skip to content

Commit a25756e

Browse files
committed
Add aarch64.bash script
This compiles astyle for 64-bit ARM (AArch64). The script should run on any native AArch64 hardware, or a chroot from an x86-64 machine using qemu-aarch64-static to emulate the AArch64 binaries.
1 parent 794929c commit a25756e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

aarch64.bash

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash -e
2+
3+
cd astyle-code/AStyle/build/gcc/
4+
5+
make clean
6+
7+
CFLAGS="-Os" LDFLAGS="-s" make java
8+
9+
cp bin/libastyle*.so ../../../../libastylej_aarch64.so

0 commit comments

Comments
 (0)