Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
84889012
Commit
84889012
authored
Apr 19, 2014
by
Ned Deily
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #21311: Avoid exception in _osx_support with non-standard compiler
configurations. Patch by John Szakmeister.
parent
f27ec3e5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
Lib/_osx_support.py
Lib/_osx_support.py
+1
-1
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/_osx_support.py
View file @
84889012
...
...
@@ -182,7 +182,7 @@ def _find_appropriate_compiler(_config_vars):
# Compiler is GCC, check if it is LLVM-GCC
data = _read_output("'
%
s
' --version"
% (cc.replace("'", "'
\
"
'
\
"'"
),))
if
'llvm-gcc'
in
data
:
if
data
and
'llvm-gcc'
in
data
:
# Found LLVM-GCC, fall back to clang
cc
=
_find_build_tool
(
'clang'
)
...
...
Misc/ACKS
View file @
84889012
...
...
@@ -1280,6 +1280,7 @@ Andrew Svetlov
Paul Swartz
Thenault Sylvain
Péter Szabó
John Szakmeister
Amir Szekely
Arfrever Frehtes Taifersar Arahesis
Hideaki Takahashi
...
...
Misc/NEWS
View file @
84889012
...
...
@@ -271,6 +271,9 @@ Library
(Original patches by Hirokazu Yamamoto and Amaury Forgeot d'
Arc
,
with
suggested
wording
by
David
Gutteridge
)
-
Issue
#
21311
:
Avoid
exception
in
_osx_support
with
non
-
standard
compiler
configurations
.
Patch
by
John
Szakmeister
.
Tools
/
Demos
-----------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment