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 mark.dickinson
Recipients mark.dickinson
Date 2022-02-06.09:55:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1644141307.79.0.853646422174.issue46656@roundup.psfhosted.org>
In-reply-to
Content
Here's the first point of failure on my machine. Fixing this shows up more failures.

gcc -c -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall    -std=c99 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o Objects/complexobject.o Objects/complexobject.c
Objects/complexobject.c:120:27: error: use of undeclared identifier 'Py_NAN'
        r.real = r.imag = Py_NAN;
                          ^
Objects/complexobject.c:206:16: error: use of undeclared identifier 'Py_NAN'
        return Py_NAN;
               ^
2 errors generated.
make: *** [Objects/complexobject.o] Error 1
History
Date User Action Args
2022-02-06 09:55:07mark.dickinsonsetrecipients: + mark.dickinson
2022-02-06 09:55:07mark.dickinsonsetmessageid: <1644141307.79.0.853646422174.issue46656@roundup.psfhosted.org>
2022-02-06 09:55:07mark.dickinsonlinkissue46656 messages
2022-02-06 09:55:07mark.dickinsoncreate