diff options
Diffstat (limited to 'ds9/library/util.tcl')
-rw-r--r-- | ds9/library/util.tcl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ds9/library/util.tcl b/ds9/library/util.tcl index c71ef83..b52b81b 100644 --- a/ds9/library/util.tcl +++ b/ds9/library/util.tcl @@ -443,8 +443,9 @@ proc InitFilterCompiler {} { } } win32 { - set tcc [file join [file dirname $argv0] tcc/tcc.exe] + set tcc [file join [file dirname $argv0] ../tcc/tcc.exe] if {[file exists $tcc]} { + set env(FILTER_KEEP) 1 set env(FILTER_CC) [file nativename [file attributes [file normalize $tcc] -shortname]] set env(FILTER_TMPDIR) [file nativename [file attributes [file normalize $ds9(tmpdir)] -shortname]] } |