92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
set ::env(KITCREATOR_PKGS) " [join $buildinfo(packages) " "] "
foreach {option value} $buildinfo(options) {
switch -- $option {
"kitdll" {
if {$value} {
set ::env(KITCREATOR_PKGS) "$::env(KITCREATOR_PKGS) kitdll"
}
}
"threaded" {
if {$value} {
lappend args "--enable-threads"
} else {
lappend args "--disable-threads"
|
|
|
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
set ::env(KITCREATOR_PKGS) " [join $buildinfo(packages) " "] "
foreach {option value} $buildinfo(options) {
switch -- $option {
"kitdll" {
if {$value} {
set ::env(KITCREATOR_PKGS) "$::env(KITCREATOR_PKGS) kitdll "
}
}
"threaded" {
if {$value} {
lappend args "--enable-threads"
} else {
lappend args "--disable-threads"
|
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
exec {*}$cmd >> "${outfile}.log" 2>@1
}
catch {
exec grep ^ {*}[lsort -dictionary [glob */build.log]] >> "${outfile}.log"
}
foreach file [list tclkit-$buildinfo(tcl_version) {*}[glob -nocomplain libtclkit*]] {
set isSDK false
switch -glob -- $file {
"*.dylib" - "*.so" - "*.sl" - "*.dll" { }
"tclkit-*" {}
"libtclkit-sdk-*.tar.gz" {
set isSDK true
}
default {
continue
}
}
if {$isSDK} {
if {[info exists outsdkfile]} {
if {[catch {
handleSDK $workdir $file $outsdkfile
}]} {
puts stderr "Error creating SDK: $::errorInfo"
}
}
continue
}
if {[file exists $file]} {
file rename $file $outfile
break
}
}
if {![file exists $outfile]} {
set fd [open $outfile.buildfail "w+"]
puts $fd "$line"
close $fd
}
|
>
>
>
>
>
>
>
>
>
>
|
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
exec {*}$cmd >> "${outfile}.log" 2>@1
}
catch {
exec grep ^ {*}[lsort -dictionary [glob */build.log]] >> "${outfile}.log"
}
set errfd [open "${outfile}.log" a+]
foreach file [list tclkit-$buildinfo(tcl_version) {*}[glob -nocomplain libtclkit*]] {
set isSDK false
switch -glob -- $file {
"*.dylib" - "*.so" - "*.sl" - "*.dll" { }
"tclkit-*" {}
"libtclkit-sdk-*.tar.gz" {
set isSDK true
}
default {
continue
}
}
if {$isSDK} {
if {[info exists outsdkfile]} {
if {[catch {
handleSDK $workdir $file $outsdkfile
}]} {
puts $errfd "Error creating SDK: $::errorInfo"
puts stderr "Error creating SDK: $::errorInfo"
}
}
continue
}
if {[file exists $file]} {
file rename $file $outfile
break
}
}
if {[info exists outsdkfile]} {
if {![file exists $outsdkfile]} {
puts $errfd "Error: Should have built an SDK, but didn't ?!?"
}
}
close $errfd
if {![file exists $outfile]} {
set fd [open $outfile.buildfail "w+"]
puts $fd "$line"
close $fd
}
|