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 BMinas
Recipients BMinas, barry, m_python, ned.deily, ronaldoussoren
Date 2019-09-07.23:19:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567898369.64.0.174561531865.issue38014@roundup.psfhosted.org>
In-reply-to
Content
Under OSX 10.15 beta and Xcode 11.0 beta the following does not work:
./configure --enable-framework

DYLD_FRAMEWORK_PATH=/Users/bill/cpython ./python.exe -E -S -m sysconfig --generate-posix-vars ;\
	if test $? -ne 0 ; then \
		echo "generate-posix-vars failed" ; \
		rm -f ./pybuilddir.txt ; \
		exit 1 ; \
	fi
/bin/sh: line 1: 78734 Segmentation fault: 11  DYLD_FRAMEWORK_PATH=/Users/bill/cpython ./python.exe -E -S -m sysconfig --generate-posix-vars
generate-posix-vars failed

The following seems to work:
./configure --disable-framework

My guess is that this is an Xcode 11 beta issue.
History
Date User Action Args
2019-09-07 23:19:29BMinassetrecipients: + BMinas, barry, ronaldoussoren, ned.deily, m_python
2019-09-07 23:19:29BMinassetmessageid: <1567898369.64.0.174561531865.issue38014@roundup.psfhosted.org>
2019-09-07 23:19:29BMinaslinkissue38014 messages
2019-09-07 23:19:29BMinascreate