On 5 Jan 2004 at 4:28, Autrijus Tang wrote: > > - By default, "pp" generated executables will now store > extracted files in cache directories. You may override > this by setting the PAR_CLEAN environment variable to "1", > or generate executables using "pp -C". >
PAR_CLEAN=1 overrides pp -C but PAR_CLEAN=0 doesn't override pp without -C. In static.c/main.c you are looking for any non-zero length value for PAR_CLEAN. Shouldn't you be looking for the 0 or 1 value? So you are patching after __ENV_PAR_CLEAN__ with the PAR_CLEAN value? Where in the code does that happen ? Does the runtime value in META.yml drive that or just reflect that. Looks like a mis-spelling of PAR_INITIALIZED on line 121 of utils.c. Alan Stewart
