Skip to content

Instantly share code, notes, and snippets.

@jappa
Forked from xianyi/as
Last active August 29, 2015 14:18
Show Gist options
  • Save jappa/57c70d5b04b9db693b7c to your computer and use it in GitHub Desktop.
Save jappa/57c70d5b04b9db693b7c to your computer and use it in GitHub Desktop.
#!/bin/sh
HAS_INPUT_FILE=0
ARGS=$@
while [ $# -ne 0 ]; do
ARG=$1
# Skip options
if [ $ARG == "-arch" ] || [ $ARG == "-o" ]; then
# Skip next token
shift
shift
continue
fi
if [ `echo $ARG | head -c1` == "-" ]; then
shift
continue
fi
HAS_INPUT_FILE=1
break
done
if [ $HAS_INPUT_FILE -eq 1 ]; then
clang -c -x assembler $ARGS
else
clang -c -x assembler $ARGS -
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment