aareadme in gencpptest/test - RJL 021018 Update 050315: I reran doall.csh which now uses genv12 not genv11; Results are in doall050315.log, which fails very similar to 021018: ------------ gcc -ansi -g -DDEBUG -DNEW_VERSION -c pr_load.c pr_load.c: In function `load_data': pr_load.c:2376: `logfile' undeclared (first use in this function) pr_load.c:2376: (Each undeclared identifier is reported only once pr_load.c:2376: for each function it appears in.) pr_load.c: In function `pr_load': pr_load.c:2572: `replayStatus' undeclared (first use in this function) *** Exit 1 Stop. ls: ../bin/alpha/gencpp not found ------------- ============================================== 021018: The proc doall.csh compiles src until pr_load.c: pr_load.c has 3 unresolved refs: doReplay and replayStatus and pr_replay() with -DDEBUG but without -DGENLOG: --------- gcc -ansi -g -DDEBUG -DNEW_VERSION -c pr_load.c pr_load.c: In function `load_data': pr_load.c:2235: `logfile' undeclared (first use in this function) pr_load.c:2235: (Each undeclared identifier is reported only once pr_load.c:2235: for each function it appears in.) pr_load.c: In function `pr_load': pr_load.c:2419: `doReplay' undeclared (first use in this function) pr_load.c:2422: `replayStatus' undeclared (first use in this function) *** Exit 1 Stop. ls: ../bin/alpha/gencpp not found saturn.cs.uml.edu(109)> ------- This can be fixed locally by declaring int doReplay, replayStatus; deleting the #ifdef DEBUG print statement at pr_load.c:223a, and wraping the pr_replay call in #ifdef GENLOG .... #endif brackets at pr_load.c:2420 aprox. The correct way to fix this is to update gen/ver_12/sjaganat's source code.