@@ -379,48 +379,6 @@ def build_libedit(
379
379
build_env .get_tools_archive (dest_archive , "deps" )
380
380
381
381
382
- def build_tix (
383
- settings , client , image , host_platform , target_triple , build_options , dest_archive
384
- ):
385
- tcl_archive = download_entry ("tcl" , DOWNLOADS_PATH )
386
- tk_archive = download_entry ("tk" , DOWNLOADS_PATH )
387
- tix_archive = download_entry ("tix" , DOWNLOADS_PATH )
388
-
389
- with build_environment (client , image ) as build_env :
390
- if settings .get ("needs_toolchain" ):
391
- build_env .install_toolchain (
392
- BUILD ,
393
- host_platform ,
394
- target_triple ,
395
- binutils = install_binutils (host_platform ),
396
- clang = True ,
397
- musl = "musl" in target_triple ,
398
- static = "static" in build_options ,
399
- )
400
-
401
- depends = {"tcl" , "tk" }
402
- if not host_platform .startswith ("macos_" ):
403
- depends |= {"libX11" , "xorgproto" }
404
-
405
- for p in sorted (depends ):
406
- build_env .install_artifact_archive (BUILD , p , target_triple , build_options )
407
-
408
- for p in (tcl_archive , tk_archive , tix_archive , SUPPORT / "build-tix.sh" ):
409
- build_env .copy_file (p )
410
-
411
- env = {
412
- "TOOLCHAIN" : "clang-%s" % host_platform ,
413
- "TCL_VERSION" : DOWNLOADS ["tcl" ]["version" ],
414
- "TIX_VERSION" : DOWNLOADS ["tix" ]["version" ],
415
- "TK_VERSION" : DOWNLOADS ["tk" ]["version" ],
416
- }
417
-
418
- add_target_env (env , host_platform , target_triple , build_env )
419
-
420
- build_env .run ("build-tix.sh" , environment = env )
421
- build_env .get_tools_archive (dest_archive , "deps" )
422
-
423
-
424
382
def build_cpython_host (
425
383
client ,
426
384
image ,
@@ -946,9 +904,6 @@ def build_cpython(
946
904
"tk8.6" ,
947
905
]
948
906
949
- if "-apple" not in target_triple :
950
- python_info ["tcl_library_paths" ].append ("Tix8.4.3" )
951
-
952
907
if "-apple" in target_triple :
953
908
python_info ["apple_sdk_platform" ] = env ["APPLE_SDK_PLATFORM" ]
954
909
python_info ["apple_sdk_version" ] = env ["APPLE_SDK_VERSION" ]
@@ -1239,17 +1194,6 @@ def main():
1239
1194
python_host_version = python_host_version ,
1240
1195
)
1241
1196
1242
- elif action == "tix" :
1243
- build_tix (
1244
- settings ,
1245
- client ,
1246
- get_image (client , ROOT , BUILD , docker_image , host_platform ),
1247
- host_platform = host_platform ,
1248
- target_triple = target_triple ,
1249
- build_options = build_options ,
1250
- dest_archive = dest_archive ,
1251
- )
1252
-
1253
1197
elif action == "tk" :
1254
1198
extra_archives = {"tcl" }
1255
1199
if not host_platform .startswith ("macos_" ):
0 commit comments