1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #! /bin/sh
- : ${REAL_CC:=gcc}
- ${REAL_CC} $@
- args=""
- limits=""
- next_arg=0
- next_limit=0
- for i in $@
- do
- if [ $next_arg -eq 1 ] ; then
- next_arg=0
- case "/$i" in
- /-*) exit 0 ;;
- esac
- [ "x$args" = "x" ] && args="$i" || args="$args $i"
- continue
- fi
- if [ $next_limit -eq 1 ] ; then
- next_limit=0
- [ "x$limits" = "x" ] && limits="$i" || limits="$limits $i"
- continue
- fi
- case "/$i" in
- /-c) next_arg=1 ;;
- /-isystem)
- next_arg=1;
- [ "x$args" = "x" ] && args="-I" || args="$args -I" ;;
- /-I)
- next_arg=1;
- [ "x$args" = "x" ] && args="$i" || args="$args $i" ;;
- /-I*) [ "x$args" = "x" ] && args="$i" || args="$args $i" ;;
- /-D|/-U)
- next_limit=1;
- [ "x$limit" = "x" ] && limit="$i" || limit="$limit $i" ;;
- /-D*) [ "x$limits" = "x" ] && limits="$i" || limits="$limits $i" ;;
- /-s|/-S|/-dump*|/--print*|/-print*) exit 0 ;;
- *) ;;
- esac
- done
- [ -z "${CPPCHECK_LIMIT}" ] && limits=""
- [ -z "${args}" ] || exec cppcheck ${CPPCHECK_FLAGS} ${args} ${limits}
|