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 Robert P Fischer
Recipients Robert P Fischer
Date 2016-02-09.04:35:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1454992584.65.0.198275659625.issue26317@psf.upfronthosting.co.za>
In-reply-to
Content
Changes to OS X 10.11 render GCC's Objective-C compiler useless.  However, I want to compile the main part of Python in GCC (because my C++ / Fortran Cython modules use GCC).

I tried to build Python (via MacPorts) using Clang for Objective-C and GCC for C/C++.  The environment upon running ./configure included:

  CC='/Users/rpfische/macports/mpgompi-4.9.3/bin/gcc-mp-4.9'
  CXX='/Users/rpfische/macports/mpgompi-4.9.3/bin/gcc-mp-4.9'
  OBJC='/usr/bin/clang'
  OBJCXX='/usr/bin/clang++'

HOWEVER... the build still tried to use GCC to compile Objective-C, and failed miserably:



:info:destroot /Users/rpfische/macports/mpgompi-4.9.3/bin/gcc-mp-4.9 -pipe -Os -arch x86_64 -Wno-unused-result -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -o FileSettings.o -c ./FileSettings.m
:info:destroot /usr/include/objc/NSObject.h:22:4: error: unknown type name 'instancetype'
:info:destroot  - (instancetype)self;
:info:destroot     ^
...



Log file attached.
History
Date User Action Args
2016-02-09 04:36:29Robert P Fischersetrecipients: + Robert P Fischer
2016-02-09 04:36:24Robert P Fischersetmessageid: <1454992584.65.0.198275659625.issue26317@psf.upfronthosting.co.za>
2016-02-09 04:36:24Robert P Fischerlinkissue26317 messages
2016-02-09 04:36:24Robert P Fischercreate