diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-08-27 11:22:17 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-08-27 11:22:17 (GMT) |
| commit | 9f4d27365595b1a66b01473a9e3d5a23a4e54eea (patch) | |
| tree | 98aa1d6138cce07a175f9d9d300917fe548ae7cb | |
| parent | 3b26998f18f760fd39ac7b2b250b9f5275299f36 (diff) | |
| parent | 7de3da420f39cd961abdcf097434e66a9b9ea75d (diff) | |
| download | tcl-9f4d27365595b1a66b01473a9e3d5a23a4e54eea.zip tcl-9f4d27365595b1a66b01473a9e3d5a23a4e54eea.tar.gz tcl-9f4d27365595b1a66b01473a9e3d5a23a4e54eea.tar.bz2 | |
Follow-up to [66cd465323]: For Tcl 9.0+, building on 32-bit MacOS is no longer supported
| -rw-r--r-- | library/platform/platform.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/platform/platform.tcl b/library/platform/platform.tcl index bd175cd..81a6b15 100644 --- a/library/platform/platform.tcl +++ b/library/platform/platform.tcl @@ -385,7 +385,7 @@ proc ::platform::patterns {id} { if {$cpu ne "arm"} { lappend res macosx${major}.${j}-${cpu} } - if {($cpu eq "x86_64") && ($j == 14)} { + if {($cpu eq "x86_64") && ($j == 14) && ![package vsatisfies [package provide Tcl] 9.0-]} { set alt i386-x86_64 } foreach a $alt { |
