| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #! /bin/sh
- # This file intercepts the pre-processor and runs 'stringfix' on the source file before it is processed.
- # This avoids the need for the old _*.c temp files.
- # Only capture pre-processing
- if [ $1 != "-E" -o -z "$stringfix" -o ! -f "$stringfix" ]; then
- exec $(${COLLECT_GCC} --print-prog-name=cc1plus) $@
- fi
- # Check for '-MD' as this may be the 'depcomp' call
- depcomp=0
- for arg; do
- case "$arg" in
- -MD)
- depcomp=1
- ;;
- *)
- ;;
- esac
- done
- # Only continue if running in depcomp (avoiding a 2nd pass for -dD/-g3)
- if [ $depcomp -eq 0 ]; then
- exec $(${COLLECT_GCC} --print-prog-name=cc1plus) $@
- fi
- TMPFILE=`(umask 077 && mktemp ".sfXXXXXX")`
- # Trap exit signals to cleanup
- trap cleanup_temp EXIT TERM HUP INT QUIT ABRT KILL
- cleanup_temp() {
- rm -f $TMPFILE $TMPFILE.garbled > /dev/null 2>&1
- }
- $(${COLLECT_GCC} --print-prog-name=cc1plus) $@ > $TMPFILE
- stat=$?
- if [ $stat -eq 0 ]; then
- $stringfix $TMPFILE $TMPFILE.garbled
- cat $TMPFILE.garbled
- else
- cat $TMPFILE
- fi
- exit $stat
|