aboutsummaryrefslogtreecommitdiff
path: root/contrib/bug216610/c/build.sh
blob: 7458fb10946453d0702ffee93550bdf18dbd5692 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
#
# Builds the following .syso files to the directory containing this script:
#
#   fib_linux_arm.syso
#   fib_linux_arm64.syso

cd ${0%/*}
GCC=arm-linux-gnueabi-gcc ./gcc.sh -O3 fib.c -c -o fib_linux_arm.syso
GCC=aarch64-linux-gnu-gcc ./gcc.sh -O3 fib.c -c -o fib_linux_arm64.syso