• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2#
3# Builds the following .syso files to the directory containing this script:
4#
5#   fib_linux_arm.syso
6#   fib_linux_arm64.syso
7
8cd ${0%/*}
9GCC=arm-linux-gnueabi-gcc ./gcc.sh -O3 fib.c -c -o fib_linux_arm.syso
10GCC=aarch64-linux-gnu-gcc ./gcc.sh -O3 fib.c -c -o fib_linux_arm64.syso
11