diff --git a/RELEASENOTES.md b/RELEASENOTES.md index e04226b..5aeb804 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,6 +1,6 @@ # Release Notes -## v 0.5 (in development) +## v 0.5 * The default is now to use the locally cached images when initialising virtual machines. This will speed up initialisation in diff --git a/make/bin/linux-ix86/tclkit b/make/bin/linux-ix86/tclkit old mode 100644 new mode 100755 diff --git a/make/distro/README.md b/make/distro/README.md new file mode 100644 index 0000000..ceb215f --- /dev/null +++ b/make/distro/README.md @@ -0,0 +1,4 @@ +# Target Location + +This is the target directory where distribution binaries will +automatically be created. \ No newline at end of file diff --git a/make/make.tcl b/make/make.tcl index a47c9a6..3b81dcf 100755 --- a/make/make.tcl +++ b/make/make.tcl @@ -16,13 +16,13 @@ if { [llength $argv] == 0 } { } cluster log NOTICE "Getting version" -set version [lindex [::cluster::Run -return -- ../machinery version] 0] +set version [lindex [::cluster::Run2 -return -- ../machinery version] 0] cluster log NOTICE "Creating skeleton and filling VFS" set tclkit [file join $bindir [::platform::generic] tclkit] set sdx [file join $kitdir sdx.kit] -::cluster::Run $tclkit $sdx qwrap ../machinery -::cluster::Run $tclkit $sdx unwrap machinery.kit +::cluster::Run2 $tclkit $sdx qwrap ../machinery +::cluster::Run2 $tclkit $sdx unwrap machinery.kit foreach fname [glob -directory [file join $dirname .. lib] -nocomplain -- *] { file copy -force -- $fname machinery.vfs/lib } @@ -31,11 +31,11 @@ foreach platform $argv { set binkit [file join $bindir $platform tclkit] if { [file exists $binkit] } { cluster log INFO "Final wrapping of binary for $platform" - ::cluster::Run $tclkit $sdx wrap machinery.kit + ::cluster::Run2 $tclkit $sdx wrap machinery.kit # Copy runtime to temporary because won't work if same as the # one we are starting from. file copy $binkit ${binkit}.temp - ::cluster::Run $tclkit $sdx wrap machinery -runtime ${binkit}.temp + ::cluster::Run2 $tclkit $sdx wrap machinery -runtime ${binkit}.temp file delete ${binkit}.temp } else { cluster log ERROR "Cannot build for $platform, no main kit available" @@ -44,4 +44,4 @@ foreach platform $argv { [file join $dstdir machinery-$version-$platform] } file delete -force -- machinery.vfs -file delete -force -- machinery.kit \ No newline at end of file +file delete -force -- machinery.kit