#!/bin/sh # # MOLPATH is needed if you want to build openbios-mol.elf # MOLPATH=$HOME/mol-0.9.71 if [ x"$1" = x -o "$1" = "-help" ]; then printf "Usage:\n $0 [arch-config]...\n" printf "arch-config values supported for native or cross compiled builds:\n" printf " amd64, ppc, sparc32, sparc64, x86\n\n" printf "Add \"unix-\" prefix to compile openbios-unix executable (native only)\n" printf "Add \"builtin-\" prefix to compile openbios-builtin executables\n\n" printf "Without prefixes, builtin and unix targets are selected\n\n" printf "Special targets: mol-ppc briq-ppc pearpc-ppc qemu-ppc qemu-ppc64 xbox-x86\n\n" printf "Example: $0 builtin-sparc32 unix-amd64 builtin-amd64\n" exit 0 fi is_bigendian() { cpu=$1 if test "$cpu" = "powerpc" -o "$cpu" = "ppc" \ -o "$cpu" = "powerpc64" -o "$cpu" = "ppc64" \ -o "$cpu" = "mips" -o "$cpu" = "s390" \ -o "$cpu" = "sparc32" -o "$cpu" = "sparc64" \ -o "$cpu" = "m68k" -o "$cpu" = "armv4b"; then echo yes else echo no fi } longbits() { cpu=$1 if test "$cpu" = "sparc64" -o "$cpu" = "ia64" \ -o "$cpu" = "amd64" -o "$cpu" = "x86_64" \ -o "$cpu" = "powerpc64" -o "$cpu" = "ppc64" \ -o "$cpu" = "alpha"; then echo 64 else echo 32 fi } basearch() { arch=$1 case $arch in powerpc|ppc64|powerpc64) echo ppc ;; *) echo $arch ;; esac } crosscflags() { host=$1 target=$2 hostbigendian=$(is_bigendian $host) hostlongbits=$(longbits $host) targetbigendian=$(is_bigendian $target) targetlongbits=$(longbits $target) if test "$targetbigendian" = "$hostbigendian"; then cflags="-USWAP_ENDIANNESS" else cflags="-DSWAP_ENDIANNESS" fi if test "$targetlongbits" = "$hostlongbits"; then cflags="$cflags -DNATIVE_BITWIDTH_EQUALS_HOST_BITWIDTH" elif test "$targetlongbits" -lt "$hostlongbits"; then cflags="$cflags -DNATIVE_BITWIDTH_SMALLER_THAN_HOST_BITWIDTH" else cflags="$cflags -DNATIVE_BITWIDTH_LARGER_THAN_HOST_BITWIDTH" fi if test "$target" = "sparc64" -o "$target" = "ia64" \ -o "$target" = "amd64" -o "$target" = "x86_64" \ -o "$target" = "alpha"; then if test "$host" = "x86"; then cflags="$cflags -DNEED_FAKE_INT128_T" elif test "$host" = "arm"; then cflags="$cflags -DNEED_FAKE_INT128_T" elif test "$host" = "ppc" -a `uname -s` = "Darwin"; then cflags="$cflags -DNEED_FAKE_INT128_T" fi fi CROSSCFLAGS=$cflags } archname() { HOSTARCH=`uname -m | sed -e s/i.86/x86/ -e s/i86pc/x86/ \ -e s/sun4u/sparc64/ -e s/sparc$/sparc32/ \ -e s/arm.*/arm/ -e s/sa110/arm/ -e s/x86_64/amd64/ \ -e "s/Power Macintosh/ppc/"` } select_prefix() { BASEARCH=$(basearch $ARCH) for target_arch ; do TARGETS="${target_arch}-unknown-linux-gnu- ${target_arch}-linux-gnu- ${target_arch}-linux- ${target_arch}-elf- ${target_arch}-eabi-" if [ x"$CROSS_COMPILE" != "x" ]; then TARGETS=$CROSS_COMPILE fi for TARGET in $TARGETS do if type ${TARGET}gcc > /dev/null 2>&1 then return fi done if [ "$BASEARCH" = "$(basearch $HOSTARCH)" ]; then TARGET="" return fi done echo "ERROR: no $* cross-compiler found !" 1>&2 exit 1 } config_set_boolean() { option=`echo $1 | tr a-z A-Z` echo "