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
42d0f684
Commit
42d0f684
authored
Mar 14, 2011
by
Ronald Oussoren
Browse files
Options
Browse Files
Download
Plain Diff
Issue #1099: Fix the build on MacOSX when building a framework with pydebug using GCC 4.0.
parents
1a5201f8
25032495
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
12 deletions
+9
-12
Makefile.pre.in
Makefile.pre.in
+6
-12
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Makefile.pre.in
View file @
42d0f684
...
...
@@ -487,18 +487,12 @@ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
$(LIBRARY)
\
$(RESSRCDIR)/Info.plist
$(INSTALL)
-d
-m
$(DIRMODE)
$(PYTHONFRAMEWORKDIR)
/Versions/
$(VERSION)
if
test
"
${UNIVERSALSDK}
"
;
then
\
$(CC)
-o
$(LDLIBRARY)
@UNIVERSAL_ARCH_FLAGS@
-dynamiclib
\
-isysroot
"
${UNIVERSALSDK}
"
\
-all_load
$(LIBRARY)
-Wl
,-single_module
\
-install_name
$(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)
/Versions/
$(VERSION)
/
$(PYTHONFRAMEWORK)
\
-compatibility_version
$(VERSION)
\
-current_version
$(VERSION)
\
-framework
CoreFoundation
$(LIBS)
;
\
else
\
/usr/bin/libtool
-o
$(LDLIBRARY)
-dynamic
$(OTHER_LIBTOOL_OPT)
$(LIBRARY)
\
@LIBTOOL_CRUFT@
-framework
CoreFoundation
$(LIBS)
;
\
fi
$(CC)
-o
$(LDLIBRARY)
$(PY_LDFLAGS)
-dynamiclib
\
-all_load
$(LIBRARY)
-Wl
,-single_module
\
-install_name
$(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)
/Versions/
$(VERSION)
/
$(PYTHONFRAMEWORK)
\
-compatibility_version
$(VERSION)
\
-current_version
$(VERSION)
\
-framework
CoreFoundation
$(LIBS)
;
$(INSTALL)
-d
-m
$(DIRMODE)
\
$(PYTHONFRAMEWORKDIR)
/Versions/
$(VERSION)
/Resources/English.lproj
$(INSTALL_DATA)
$(RESSRCDIR)
/Info.plist
\
...
...
Misc/NEWS
View file @
42d0f684
...
...
@@ -516,6 +516,9 @@ Build
support
now
looks
for
"__powerpc__"
as
well
as
"__ppc__"
:
the
latter
seems
to
only
be
present
on
OS
X
;
the
former
is
the
correct
one
for
Linux
with
GCC
.
-
Issue
#
1099
:
Fix
the
build
on
MacOSX
when
building
a
framework
with
pydebug
using
GCC
4.0
.
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