This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author duncanb
Recipients
Date 2003-06-10.14:47:22
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Using grammar.mak to build new graminit.c and 
graminit.h files doesn't currently work on windows.

The line in grammar.mak:

CFLAGS= /I ..\Include /I ..\PC /D 
MS_NO_COREDLL  /MD

needs to be changed to:

CFLAGS= /I ..\Include /I ..\PC /D 
MS_NO_COREDLL /D PGEN /MD

otherwise you get an undefined symbol when 
attempting to link caused by a reference to 
PyExc_DeprecationWarning in tokenizer.c.
History
Date User Action Args
2007-08-23 14:13:49adminlinkissue751956 messages
2007-08-23 14:13:49admincreate