@@ -230,7 +230,7 @@ def build_libedit(client, image, platform, musl=False):
230
230
231
231
env = {
232
232
"CC" : "clang" ,
233
- "TOOLCHAIN" : "clang-linux64" ,
233
+ "TOOLCHAIN" : "clang-%s" % platform ,
234
234
"LIBEDIT_VERSION" : DOWNLOADS ["libedit" ]["version" ],
235
235
}
236
236
@@ -263,7 +263,7 @@ def build_readline(client, image, platform, musl=False):
263
263
264
264
env = {
265
265
"CC" : "clang" ,
266
- "TOOLCHAIN" : "clang-linux64" ,
266
+ "TOOLCHAIN" : "clang-%s" % platform ,
267
267
"READLINE_VERSION" : DOWNLOADS ["readline" ]["version" ],
268
268
}
269
269
@@ -296,7 +296,7 @@ def build_tix(client, image, platform, musl=False):
296
296
297
297
env = {
298
298
"CC" : "clang" ,
299
- "TOOLCHAIN" : "clang-linux64" ,
299
+ "TOOLCHAIN" : "clang-%s" % platform ,
300
300
"TCL_VERSION" : DOWNLOADS ["tcl" ]["version" ],
301
301
"TIX_VERSION" : DOWNLOADS ["tix" ]["version" ],
302
302
"TK_VERSION" : DOWNLOADS ["tk" ]["version" ],
@@ -577,6 +577,7 @@ def build_cpython(
577
577
"PYTHON_VERSION" : entry ["version" ],
578
578
"PYTHON_MAJMIN_VERSION" : entry ["version" ][:3 ],
579
579
"SETUPTOOLS_VERSION" : DOWNLOADS ["setuptools" ]["version" ],
580
+ "TOOLCHAIN" : "clang-%s" % platform ,
580
581
}
581
582
582
583
if musl :
0 commit comments