Changeset b9b103d3 in mainline for build.ia32


Ignore:
Timestamp:
2005-10-27T15:53:40Z (20 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
39cb79a
Parents:
807d2d4
Message:

Enable/disable CPU memory barriers at compile time

File:
1 edited

Legend:

Unmodified
Added
Removed
  • build.ia32

    r807d2d4 rb9b103d3  
    33COMPILER=""
    44
    5 if [ "$1" == "native" ];
    6 then
    7         COMPILER="NATIVE_COMPILER=yes";
    8 fi;
     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
    920
    1021make all ARCH=ia32 $COMPILER
Note: See TracChangeset for help on using the changeset viewer.