#!/bin/bash
MCF="-march=armv7ve -mfloat-abi=hard -mfpu=neon-vfpv4 -mtune=cortex-a17"
target="--target=armv7l-unknown-linux-gnueabihf"
sysroot=/mnt/armlfs
for arg; do
if [[ $arg = *-target* ]]; then
target=
fi
if [[ $arg = --target=aarch64* ]]; then
sysroot=/
MCF=
fi
done
exec /usr/bin/clang $target --sysroot=$sysroot $MCF \
"$@"
#-isystem $sysroot/usr/lib/gcc/armv7l-unknown-linux-gnueabihf/12.3.0/include \