Skip to content
Snippets Groups Projects
Commit 00529136 authored by deuce's avatar deuce
Browse files

Add *nix execution wrapper.

parent 8936189f
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
os=`uname | tr "[A-Z]" "[a-z]"`
exename=`basename $0`
dirname=`dirname $0`
if [ -x $dirname\/gcc.$os.exe.release/$exename ]
then exec $dirname\/gcc.$os.exe.release/$exename $@
elif [ -x $dirname\/gcc.$os.exe.debug/$exename ]
then exec $dirname\/gcc.$os.exe.debug/$exename $@
elif [ -x $dirname\/*.$os.exe.release/$exename ]
then exec $dirname\/*.$os.exe.release/$exename $@
elif [ -x $dirname\/*.$os.exe.debug/$exename ]
then exec $dirname\/*.$os.exe.debug/$exename $@
elif [ -x $dirname\/*.$os.exe.*/$exename ]
then exec $dirname\/*.$os.exe.*/$exename $@
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment