> 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.
> > NMAKE : warning U4006: special macro undefined : '$<' > > link -dll -def:libparrot.def -nologo -debug -o libnci.dll > > LINK : warning LNK4044: unrecognized option "o"; ignored > > LINK : fatal error LNK1181: cannot open input file "libnci.dll" > > I'll check the build line again. Better, but a space has slipped into the line, resulting in this error:- link -dll -def:libparrot.def -nologo -debug -out: libnci.dll src\nci_te st.obj LINK : fatal error LNK1146: no argument specified with option "/out:" NMAKE : fatal error U1077: 'link' : return code '0x47a' Stop. The line:- $(LD_OUT) $@ $(SRC)\nci_test$(O) Needs to be:- $(LD_OUT)$@ $(SRC)\nci_test$(O) Unfortunately, even having done that, it spits out another bunch of errors:- link -dll -def:libparrot.def -nologo -debug -out:libnci.dll src\nci_test.obj libparrot.def : error LNK2001: unresolved external symbol Parrot_DynOp_core_0_0_11 libparrot.def : error LNK2001: unresolved external symbol Parrot_debug libparrot.def : error LNK2001: unresolved external symbol Parrot_destroy libparrot.def : error LNK2001: unresolved external symbol Parrot_disassemble libparrot.def : error LNK2001: unresolved external symbol Parrot_init libparrot.def : error LNK2001: unresolved external symbol Parrot_loadbc libparrot.def : error LNK2001: unresolved external symbol Parrot_new libparrot.def : error LNK2001: unresolved external symbol Parrot_readbc libparrot.def : error LNK2001: unresolved external symbol Parrot_runcode libparrot.def : error LNK2001: unresolved external symbol Parrot_setflag libparrot.def : error LNK2001: unresolved external symbol Parrot_setwarnings libnci.lib : fatal error LNK1120: 11 unresolved externals LINK : fatal error LNK1141: failure during build of exports file NMAKE : fatal error U1077: 'link' : return code '0x475' Stop. Jonathan