s/CONST/CONSTX/ anywhere in the parser & lexer. Keeps Win32 headers happy as previously mentioned.
Thanks. Will check it in soon.
NMAKE : fatal error U1073: don't know how to make 'FORCE' Stop.
Removing the .FORCE references gets me something that builds objects.
Either we need a prerequisite of a working make.exe or we have to remove everything nmake doesn't get - or -
cd ../.. && nmake
- have a second set of Makefiles for nmake/Win32.
PARROTLIB = blib/lib/libparrot.lib
And manually building with "nmake shared" at the parrot level satisfy this requirement.
imcc isn't using a shared library - its statically linked against libparrot.a. The dynamic win32 dll's are missing too many export defines.
Could you try building a static lib and linking it with imcc?
leo