source: mainline/build.ia32@ 34c71ead

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 34c71ead was 2a40908, checked in by Martin Decky <martin@…>, 20 years ago

initial (very raw) user space support

  • Property mode set to 100755
File size: 395 bytes
Line 
1#! /bin/sh
2
3COMPILER=""
4
5while [ "$#" -gt 0 ]; do
6 case "$1" in
7 native)
8 COMPILER="$COMPILER NATIVE_COMPILER=yes"
9 ;;
10 strong)
11 COMPILER="$COMPILER STRONG_ORDERING=yes"
12 ;;
13 *)
14 echo "Supported arguments: native strong"
15 exit 1
16 ;;
17 esac
18 shift
19done
20
21make all ARCH=ia32 $COMPILER
22( cd uspace/libc && make all ARCH=ia32 $COMPILER )
23( cd uspace && make all ARCH=ia32 $COMPILER )
Note: See TracBrowser for help on using the repository browser.