44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
  | 
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  | 
+
-
+
+
+
+
  | 
			foreach ext $failedexts {
				puts "  $ext"
			}
			exit 1
		}
	}
	"list" {
		if {$tcl_platform(platform) == "unix"} {
		set os [string tolower $tcl_platform(os)]
			set os [string tolower $tcl_platform(os)]
		} else {
			set os [string tolower $tcl_platform(platform)]
		}
		set cpu [string tolower $tcl_platform(machine)]
		if {[llength $argv] > 0} {
			set os [lindex $argv 0]
		}
		if {[llength $argv] > 1} {
			set cpu [lindex $argv 1]
		}
 |