Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0579715

Browse files
committed
Fixed names of vairous plugins to build, added a couple and added
possibility to create standalone pythons and fat pythons (the latter not functional yet).
1 parent f57df79 commit 0579715

1 file changed

Lines changed: 26 additions & 9 deletions

File tree

Mac/scripts/fullbuild.py

Lines changed: 26 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ def buildapplet(top, dummy, list):
7676
# XXXX We could also include the builds for stdwin and such here...
7777
PPC_INSTRUCTIONS=[
7878
(buildmwproject, "CWIE", [
79-
":build.macppc.shared:PythonCore.µ",
79+
":build.macppc.shared:PythonCorePPC.µ",
8080
":build.macppc.shared:PythonPPC.µ",
81-
":build.macppc.shared:PythonApplet.µ",
81+
":build.macppc.shared:PythonAppletPPC.µ",
8282
])
8383
]
8484
CFM68K_INSTRUCTIONS=[
@@ -88,29 +88,43 @@ def buildapplet(top, dummy, list):
8888
":build.mac68k.shared:PythonAppletCFM68K.µ",
8989
])
9090
]
91+
FAT_INSTRUCTIONS=[
92+
(buildmwproject, "CWIE", [
93+
":build.macppc.shared:Python.µ",
94+
":build.macppc.shared:PythonApplet.µ",
95+
])
96+
]
9197
PLUGIN_INSTRUCTIONS=[
9298
(buildmwproject, "CWIE", [
93-
":PlugIns:ctbmodule.ppc.µ",
99+
":PlugIns:ctb.ppc.µ",
94100
":PlugIns:imgmodules.ppc.µ",
95-
":PlugIns:macspeechmodule.ppc.µ",
101+
":PlugIns:macspeech.ppc.µ",
96102
":PlugIns:toolboxmodules.ppc.µ",
97-
":PlugIns:wastemodule.ppc.µ",
98-
":PlugIns:_tkintermodule.ppc.µ",
103+
":PlugIns:qtmodules.ppc.µ",
104+
":PlugIns:waste.ppc.µ",
105+
":PlugIns:_tkinter.ppc.µ",
99106
])
100107
]
101108
CFM68KPLUGIN_INSTRUCTIONS=[
102109
(buildmwproject, "CWIE", [
103-
":PlugIns:ctbmodule.CFM68K.µ",
110+
":PlugIns:ctb.CFM68K.µ",
111+
":PlugIns:imgmodules.ppc.µ",
104112
":PlugIns:toolboxmodules.CFM68K.µ",
105-
":PlugIns:wastemodule.CFM68K.µ",
106-
":PlugIns:_tkintermodule.CFM68K.µ",
113+
":PlugIns:qtmodules.CFM68K.µ",
114+
":PlugIns:waste.CFM68K.µ",
115+
":PlugIns:_tkinter.CFM68K.µ",
107116
])
108117
]
109118
M68K_INSTRUCTIONS=[
110119
(buildmwproject, "CWIE", [
111120
":build.mac68k.stand:Python68K.µ",
112121
])
113122
]
123+
PPCSTAND_INSTRUCTIONS=[
124+
(buildmwproject, "CWIE", [
125+
":build.macppc.stand:PythonStandalone.µ",
126+
])
127+
]
114128
APPLET_INSTRUCTIONS=[
115129
(buildapplet, None, [
116130
":Mac:scripts:EditPythonPrefs.py",
@@ -124,7 +138,10 @@ def buildapplet(top, dummy, list):
124138
("PPC shared executable", PPC_INSTRUCTIONS),
125139
("PPC plugin modules", PLUGIN_INSTRUCTIONS),
126140
("CFM68K shared executable", CFM68K_INSTRUCTIONS),
141+
("CFM68K plugin modules", CFM68KPLUGIN_INSTRUCTIONS),
142+
("FAT shared executables", FAT_INSTRUCTIONS),
127143
("68K standalone executable", M68K_INSTRUCTIONS),
144+
("PPC standalone executable", PPCSTAND_INSTRUCTIONS),
128145
("Applets", APPLET_INSTRUCTIONS)
129146
]
130147

0 commit comments

Comments
 (0)