#!/bin/sh
# Script to demonstrate building "Hello, world" for AML M7100 Barcode Scanner
set -x

target=arm-unknown-linux-gnu
toolcombo=gcc-2.95.3-glibc-2.1.3
PATH=/opt/crosstool/$target/$toolcombo/bin:$PATH

$target-gcc hello.c -o hello

