Overview
Comment: | Added enough critcl to be handle tcllib |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f6d387c96c04d1f35257a486d5c19442 |
User & Date: | rkeene on 2017-10-13 20:34:02.983 |
Other Links: | manifest | tags |
Context
2017-10-13
| ||
20:36 | Disabled a test which now does not work check-in: 30810bb6d9 user: rkeene tags: trunk | |
20:34 | Added enough critcl to be handle tcllib check-in: f6d387c96c user: rkeene tags: trunk | |
19:59 | Fixed typo and added test for process_command_line check-in: 6641266e0b user: rkeene tags: trunk | |
Changes
Modified Makefile.in
from [24f224ef33]
to [ee6f8c12a0].
︙ | |||
56 57 58 59 60 61 62 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + + | tcc4tcl-static.a: tcc4tcl.o tcc/libtcc.a cp tcc/libtcc.a tcc4tcl-static.new.a $(AR) rcu tcc4tcl-static.new.a tcc4tcl.o -$(RANLIB) tcc4tcl-static.new.a mv tcc4tcl-static.new.a tcc4tcl-static.a |
︙ | |||
87 88 89 90 91 92 93 | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | - + | done $(srcdir)/patch-headers.sh "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/include" test: test.tcl rm -rf __TMP__ $(MAKE) install tcllibdir=$(shell pwd)/__TMP__ -if [ "$(PACKAGE_VERSION)" = '@@VERS@@' ]; then cd __TMP__/* && ( \ |
︙ |
Modified pkgIndex.tcl.in
from [00c586db9f]
to [26945f81a8].
1 | 1 2 | + | package ifneeded tcc4tcl @PACKAGE_VERSION@ [list source [file join $dir tcc4tcl.tcl]] package ifneeded critcl 0 [list source [file join $dir tcc4critcl.tcl]] |
Added tcc4critcl.tcl version [f455727caf].
Modified test.tcl
from [3226475418]
to [63a2456439].
︙ | |||
223 224 225 226 227 228 229 230 | 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | + + + + + + + + + + + | return(TCL_OK); } $handle go if {[testCCommand] ne "OKAY"} { error "\[testCCommand\] Invalid result" } # Critcl test package require -exact critcl 0 critcl::ccode { #define test 1234 } critcl::cproc test14 {int x} int { return(x + test); } puts "Test14: [test14 3]" exit 0 |