File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,6 +76,13 @@ installunixtools:
7676 do \
7777 ln -fs " $( prefix) /bin/$$ {fn}" " $( DESTDIR) $( FRAMEWORKUNIXTOOLSPREFIX) /bin/$$ {fn}" ; \
7878 done
79+ ifneq ($(LIPO_32BIT_FLAGS ) ,)
80+ for fn in python3-32 pythonw3-32 \
81+ python$(VERSION)-32 pythonw$(VERSION)-32 ;\
82+ do \
83+ ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\
84+ done
85+ endif
7986
8087
8188#
@@ -90,6 +97,12 @@ altinstallunixtools:
9097 do \
9198 ln -fs " $( prefix) /bin/$$ {fn}" " $( DESTDIR) $( FRAMEWORKUNIXTOOLSPREFIX) /bin/$$ {fn}" ; \
9299 done
100+ ifneq ($(LIPO_32BIT_FLAGS ) ,)
101+ for fn in python$(VERSION)-32 pythonw$(VERSION)-32 ;\
102+ do \
103+ ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\
104+ done
105+ endif
93106
94107pythonw : $(srcdir ) /Tools/pythonw.c Makefile
95108 $(CC ) $(LDFLAGS ) -DPYTHONFRAMEWORK=' "$(PYTHONFRAMEWORK)"' -o $@ $(srcdir ) /Tools/pythonw.c -I.. -I$(srcdir ) /../Include ../$(PYTHONFRAMEWORK ) .framework/Versions/$(VERSION ) /$(PYTHONFRAMEWORK )
Original file line number Diff line number Diff line change @@ -721,6 +721,10 @@ Library
721721Build
722722-----
723723
724+ - Issue #11217: For 64-bit/32-bit Mac OS X universal framework builds,
725+ ensure "make install" creates symlinks in --prefix bin for the "-32"
726+ files in the framework bin directory like the installer does.
727+
724728- Issue #11347: Use --no-as-needed when linking libpython3.so.
725729
726730- Issue #11411: Fix 'make DESTDIR=' with a relative destination.
You can’t perform that action at this time.
0 commit comments