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
d4314dcf
Commit
d4314dcf
authored
Dec 11, 2014
by
Ned Deily
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #23032: Fix installer build failures on OS X 10.4 Tiger
by disabling assembly code in the OpenSSL build.
parent
c6f5a7b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
Mac/BuildScript/build-installer.py
Mac/BuildScript/build-installer.py
+7
-0
Misc/NEWS
Misc/NEWS
+6
-0
No files found.
Mac/BuildScript/build-installer.py
View file @
d4314dcf
...
...
@@ -844,6 +844,11 @@ def build_universal_openssl(basedir, archList):
separately then lipo them together into fat libraries.
"""
# OpenSSL fails to build with Xcode 2.5 (on OS X 10.4).
# If we are building on a 10.4.x or earlier system,
# unilaterally disable assembly code building to avoid the problem.
no_asm
=
int
(
platform
.
release
().
split
(
"."
)[
0
])
<
9
def
build_openssl_arch
(
archbase
,
arch
):
"Build one architecture of openssl"
arch_opts
=
{
...
...
@@ -868,6 +873,8 @@ def build_universal_openssl(basedir, archList):
"--prefix=%s"
%
os
.
path
.
join
(
"/"
,
*
FW_VERSION_PREFIX
),
"--openssldir=/System/Library/OpenSSL"
,
]
if
no_asm
:
configure_opts
.
append
(
"no-asm"
)
runCommand
(
" "
.
join
([
"perl"
,
"Configure"
]
+
arch_opts
[
arch
]
+
configure_opts
))
runCommand
(
"make depend OSX_SDK=%s"
%
SDKPATH
)
...
...
Misc/NEWS
View file @
d4314dcf
...
...
@@ -57,6 +57,12 @@ IDLE
- Issue #16893: Update Idle doc chapter to match current Idle and add new
information.
Build
-----
- Issue #23032: Fix installer build failures on OS X 10.4 Tiger
by disabling assembly code in the OpenSSL build.
What'
s
New
in
Python
2.7.9
?
===========================
...
...
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