Changes between Initial Version and Version 1 of Ticket #58882, comment 13


Ignore:
Timestamp:
Oct 10, 2019, 4:20:19 PM (5 years ago)
Author:
colons (colons)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #58882, comment 13

    initial v1  
    1 I'm able to build, install, and run from the 3.7.4 tarball successfully, with no modifications.
     1With Xcode 10.3 and 11.1, I'm able to build, install, and run from the 3.7.4 tarball successfully, with no modifications. The below step goes by with no segfault:
     2
     3{{{
     4/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libpython3.7m.a(pymath.o) has no symbols
     5gcc     -Wl,-stack_size,1000000  -framework CoreFoundation -o python.exe Programs/python.o libpython3.7m.a -ldl  -framework CoreFoundation     
     6./python.exe -E -S -m sysconfig --generate-posix-vars ;\
     7        if test $? -ne 0 ; then \
     8                echo "generate-posix-vars failed" ; \
     9                rm -f ./pybuilddir.txt ; \
     10                exit 1 ; \
     11        fi
     12gcc -c  -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall    -std=c99 -Wextra -Wno-unused-result -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration   -I. -I./Include    -DPy_BUILD_CORE -o Modules/_math.o Modules/_math.c
     13}}}
    214
    315I can't find anyone reporting this particular issue in Python's issue tracker. [https://bugs.python.org/issue38014 38295] isn't the same issue and I can't see anything that looks like this in their issue tracker.