[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2018-04-15 Thread Ned Deily
Ned Deily added the comment: Update: as of 3.6.5 and 2.7.15 and in the upcoming 3.7.0 release, macSO framework builds with --enable-universalsdk=/ no longer add -isysroot=/ to compiler and linker calls. They are not necessary and made it more difficult to attempt to override. Although we st

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2017-09-25 Thread Łukasz Langa
Łukasz Langa added the comment: Not critical anymore. Probably safe to close? -- nosy: +lukasz.langa priority: critical -> ___ Python tracker ___ __

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2013-10-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 73532f33fbb3 by Ned Deily in branch 'default': Issue #14499: Fix several problems with OS X universal build support: http://hg.python.org/cpython/rev/73532f33fbb3 -- nosy: +python-dev ___ Python tracker

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-06-25 Thread Ned Deily
Ned Deily added the comment: An initial set of changes to support Xcode 4.3+ have been applied for Python 3.3.0b1 have been applied via Issue13590. As noted there, a back port of some subset is needed for 3.2 and 2.7. I'll update this after 3.3.0b1 has been released. -- _

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-06-11 Thread Samuel John
Changes by Samuel John : -- nosy: +samueljohn ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-06-08 Thread Laurent Duchesne
Changes by Laurent Duchesne : -- nosy: +Laurent.Duchesne ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-05-31 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-05-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: What I'd prefer to look for the compiler: * in distutils: if $CC is an absolute path and exists, use that * look for clang on $PATH, use it if found (default configure looks for GCC in preference of other compilers, but with Apple's toolchain it is be

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-05-30 Thread Ned Deily
Ned Deily added the comment: I've been working on this and it does need to be thoroughly fixed. There are two different aspects to it: (1) being able to build Python using any of the supported development environment options; and (2) support in Distutils and packaging to build extension modu

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-05-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: The issue is more annoying than the change of location of the SDK, the path to the compiler has also changed unless users manually install the Unix command-line tools, either using a button in the GUI or by installing a separate DMG. There seem to be two op

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-05-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: s7v7nislands: you cannot use Xcode-select to fix this, xcode-select is used to switch between 2 or more installed versions of Xcode. -- nosy: +ronaldoussoren ___ Python tracker

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-04-13 Thread s7v7nislands
s7v7nislands added the comment: maybe you can use xcode-select to set the correct path xcode-select -print-path /Applications/Xcode.app/Contents/Developer Usage: xcode-select -print-path or: xcode-select -switch -switch Sets the path for the current Xcode for detail, you can ma

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-04-04 Thread Matthew Scott
Changes by Matthew Scott : -- nosy: +Matthew.Scott ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-04-04 Thread Ned Deily
New submission from Ned Deily : With the release of Xcode 4.3 for OS X 10.7, Apple has moved the location of the OS X SDKs from their long-time path of /Developer to within the new Xcode.app bundle itself. This breaks the building of extension modules with any of Distutils or packaging/Distut