[issue18071] _osx_support compiler_fixup

2013-07-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset addd9210816b by Ned Deily in branch '2.7': Issue #18071: Extension module builds on OS X could fail with TypeError http://hg.python.org/cpython/rev/addd9210816b -- nosy: +python-dev ___ Python tracker

[issue18071] _osx_support compiler_fixup

2013-07-28 Thread Ralf Schmitt
Changes by Ralf Schmitt : -- nosy: +schmir ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue18071] _osx_support compiler_fixup

2013-07-28 Thread Alexey Borzenkov
Alexey Borzenkov added the comment: Also, to reproduce it you have to temporarily move away your /usr/bin/cc and /usr/bin/clang, which then triggers the affected code path. -- ___ Python tracker __

[issue18071] _osx_support compiler_fixup

2013-07-28 Thread Alexey Borzenkov
Alexey Borzenkov added the comment: I was unaware of this issue (which homebrew works around incorrectly), and because of this I created issue 18580. The problem is indeed with unicode strings which are coming from _read_output in _osx_support. This is probably because this code was merged fro

[issue18071] _osx_support compiler_fixup

2013-05-27 Thread Ned Deily
Ned Deily added the comment: Sorry, I am unable to reproduce the problem with a vanilla Python 2.7.5 and a downloaded Cython 0.19.1 either installing directly with Cython's setup.py or using Pip 1.3.1. customize_compiler is used as part of every extension module build in Distutils; it is not

[issue18071] _osx_support compiler_fixup

2013-05-27 Thread Samuel John
Samuel John added the comment: The symptom for the end-user looks kind of weird: running build_ext building 'Cython.Plex.Scanners' extension / A p p l i c a t i o n s / X c o d e . a p p / C o n t e n t s / D e v e l o p e r / T o o l c h a i n s / X c o d e D e f a u l t . x c t o o l c h

[issue18071] _osx_support compiler_fixup

2013-05-27 Thread Samuel John
New submission from Samuel John: In the `_osx_support.py` module, there seems to be a bug in the method `compiler_fixup` which occurs if * the `customize_compiler` method from `distutils/sysconfig` has been called and after that * `_compile` from `distutils/unixcompiler.py` is called. The `_c