Differences From Artifact [6fae2b3ce8]:
- Executable file xvfs-create — part of check-in [807cab65f7] at 2020-03-25 01:01:12 on branch trunk — Allow setting a specific mode when building (user: rkeene, size: 2767) [annotate] [blame] [check-ins using]
To Artifact [a457e756d3]:
- Executable file xvfs-create — part of check-in [717062426a] at 2020-04-13 15:47:03 on branch trunk — Added an "--static-init" option to creation to make the Xvfs_fsName_Init function static, if needed to be included into a .c file (user: rkeene, size: 2788) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | + | #! /usr/bin/env tclsh set sourceDirectory [file dirname [file normalize [info script]]] lappend auto_path [file join $sourceDirectory lib] set template [file join $sourceDirectory lib xvfs xvfs.c.rvt] package require minirivet set mode "run" set staticInit false if {[lindex $argv 0] == "--dump-tcl"} { set mode "dump-tcl" } foreach {arg val} $argv { switch -exact -- $arg { "--output" { |
︙ |