File: cc_prefix.sh

package info (click to toggle)
rtags 2.41-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,768 kB
  • sloc: cpp: 51,883; lisp: 5,389; ansic: 1,637; sh: 563; python: 305; objc: 81; makefile: 29
file content (8 lines) | stat: -rwxr-xr-x 169 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/bin/sh

[ -z "$RTAGS_DISABLED" ] && [ -x "$(command -v rc)" ] && rc --silent --compile "$@" &
[ "$RTAGS_RMAKE" ] && exit 1
compiler="$1"
shift
$compiler "$@"
exit $?