tools: fix gccx with: .nit_compile[0-9] and GC
[nit.git] / src / nc
diff --git a/src/nc b/src/nc
index b09267d..5e5cf85 100755 (executable)
--- a/src/nc
+++ b/src/nc
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-NITC="../bin/nitc"
-NITCOPTS= #"-I parser -I metamodel -I syntax -I compiling -I tmp"
+NITC="../c_src/nitc"
+NITCOPTS="-v -W"
+CSRC=$( (cd ../c_src; pwd) )
 
 name=`basename $0`
 case $name in
-       nc) opts="";;
+       nc) opts="--clibdir ../c_src/clib";;
        nc2) opts="-p 2"; NITC="./nitc";;
        nc3) opts="-p 3"; NITC="./nitc_2";;
        nc4) opts="-p 4"; NITC="./nitc_3";;
        *) echo "unknown mode $name"; exit 1;;
 esac
 
-echo ${NITC} ${NITCOPTS} ${opts} "$@"
-${NITC} ${NITCOPTS} ${opts} "$@"
+./git-gen-version.sh "$name"
 
+echo ${NITC} ${NITCOPTS} ${opts} "$@"
+k=$(mktemp nc.stderr.XXXXX)
+rm "$k"
+trap "rm -f $k; exit 1" INT TERM
+mkfifo "$k"
+./showerr.sh <"$k" &
+${NITC} ${NITCOPTS} ${opts} "$@" 2>"$k"
+err=$?
+rm "$k"
+exit $err