File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -457,17 +457,11 @@ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
457
457
$(LIBRARY) \
458
458
$(RESSRCDIR)/Info.plist
459
459
$(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
460
- if test "${UNIVERSALSDK}"; then \
461
- $(CC) -o $(LDLIBRARY) @UNIVERSAL_ARCH_FLAGS@ -dynamiclib \
462
- -isysroot "${UNIVERSALSDK}" \
463
- -all_load $(LIBRARY) -Wl,-single_module \
464
- -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \
465
- -compatibility_version $(VERSION) \
466
- -current_version $(VERSION); \
467
- else \
468
- /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
469
- @LIBTOOL_CRUFT@ ;\
470
- fi
460
+ $(CC) -o $(LDLIBRARY) $(LDFLAGS) -dynamiclib \
461
+ -all_load $(LIBRARY) -Wl,-single_module \
462
+ -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \
463
+ -compatibility_version $(VERSION) \
464
+ -current_version $(VERSION);
471
465
$(INSTALL) -d -m $(DIRMODE) \
472
466
$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
473
467
$(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
Original file line number Diff line number Diff line change @@ -251,6 +251,9 @@ Build
251
251
support now looks for "__powerpc__" as well as "__ppc__": the latter seems to
252
252
only be present on OS X; the former is the correct one for Linux with GCC.
253
253
254
+ - Issue #1099: Fix the build on MacOSX when building a framework with pydebug
255
+ using GCC 4.0.
256
+
254
257
Tests
255
258
-----
256
259
@@ -795,6 +798,7 @@ Extension Modules
795
798
796
799
- Issue #7567: Don't call `setupterm' twice.
797
800
801
+
798
802
Tools/Demos
799
803
-----------
800
804
You can’t perform that action at this time.
0 commit comments