Jonathan Worthington <[EMAIL PROTECTED]> wrote: >> > src\jit_cpu.c(95) : error C2065: 'RTYPE_COM' : undeclared identifier
>> Did you recheck that recently, I had committed a change WRT this. > I did, and I just did an update now to try it again. Same set of errors > still appear. Again, it's because those constants are defined in an #if > EXEC_CAPABLE block in exec.h, and Win32 doesn't have exec support. As I can see, all these RTYPE_CON (and other related syms) are enclosed in '#if EXEC_CAPABLE', so they should never be used. Can you try to generate a listing after pre-processing (could be -E switch). > The line:- > $(LD_OUT) $@ $(SRC)\nci_test$(O) > Needs to be:- > $(LD_OUT)$@ $(SRC)\nci_test$(O) I'll fix that. > Unfortunately, even having done that, it spits out another bunch of errors:- > link -dll -def:libparrot.def -nologo -debug -out:libnci.dll ^^^^^^^^^ That has to be "libnci.def" of course, arghh. > Jonathan leo