#-------------------------------------------------------- # This is a wrapper script for icc 10.1 on IA-32 #-------------------------------------------------------- ARGS=$@ ICCARGS="-fno-builtin" # For loop to change options of icc for ARG in $@ do case $ARG in -fno-stack-protector ) ICCARGS="$ICCARGS -fno-stack-security-check" ;; -Wno-pointer-sign | -msoft-float | -ffreestanding | -maccumulate-outgoing-args ) ;; * ) ICCARGS="$ICCARGS $ARG" ;; esac done icc $ICCARGS exit $?