Subversion Repositories HelenOS

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1967 → Rev 1968

/tags/0.1.0/SPARTAN/build.ia32
0,0 → 1,23
#! /bin/sh
 
COMPILER=""
 
while [ "$#" -gt 0 ]; do
case "$1" in
native)
COMPILER="$COMPILER NATIVE_COMPILER=yes"
;;
strong)
COMPILER="$COMPILER STRONG_ORDERING=yes"
;;
*)
echo "Supported arguments: native strong"
exit 1
;;
esac
shift
done
 
make all ARCH=ia32 $COMPILER
( cd uspace/libc && make all ARCH=ia32 $COMPILER )
( cd uspace && make all ARCH=ia32 $COMPILER )
Property changes:
Added: svn:executable
+*
\ No newline at end of property