Overview
| Comment: | Minor updates |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6443047afb22ee0836c9b54e262b1b41 |
| User & Date: | rkeene on 2019-06-05 00:38:39.775 |
| Other Links: | manifest | tags |
Context
|
2019-06-05
| ||
| 01:41 | Better symbol handling check-in: c1a5de894b user: rkeene tags: trunk | |
| 00:38 | Minor updates check-in: 6443047afb user: rkeene tags: trunk | |
| 00:34 | Example for compiling tcllibc -- very specific check-in: 40255f4a4f user: rkeene tags: trunk | |
Changes
Modified .fossil-settings/ignore-glob
from [fb72cf2d2f]
to [e35da34182].
| ︙ | ︙ | |||
18 19 20 21 22 23 24 | tcc4tcl.dll.def tcc4tcl.dll.a tcc4tcl.dylib tcc4tcl.syms tcc4tcl.vers TEST-STATUS __TMP__ | > | 18 19 20 21 22 23 24 25 | tcc4tcl.dll.def tcc4tcl.dll.a tcc4tcl.dylib tcc4tcl.syms tcc4tcl.vers TEST-STATUS __TMP__ build/tcllibc.so |
Modified build/tcc-critcl-to-c.tcl
from [b3fa452a32]
to [d875670f69].
1 2 3 4 |
#! /usr/bin/env tclsh
#package require -exact critcl 0
catch {
| | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#! /usr/bin/env tclsh
#package require -exact critcl 0
catch {
source ../tcc4tcl.tcl
}
package provide tcc4tcl 0
catch {
source ../tcc4critcl.tcl
} err
# Emit a library by default
set packageName "PACKAGENAME"
set packageVersion "0"
set outputMode "library"
proc ::critcl::_allocateHandle {} {
|
| ︙ | ︙ |
Modified build/tcllibc.sh
from [e69b1a60d2]
to [9735996eb3].
1 2 3 | #! /usr/bin/env bash inFiles=( | | | | | | | | | | | | | | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
#! /usr/bin/env bash
inFiles=(
../../tcllib-fossil/modules/tcllibc.tcl
../../tcllib-fossil/modules/md4/md4c.tcl
../../tcllib-fossil/modules/struct/graph_c.tcl
../../tcllib-fossil/modules/base32/base32_c.tcl
../../tcllib-fossil/modules/struct/sets_c.tcl
../../tcllib-fossil/modules/json/jsonc.tcl
../../tcllib-fossil/modules/pt/pt_rdengine_c.tcl
../../tcllib-fossil/modules/pt/pt_parse_peg_c.tcl
../../tcllib-fossil/modules/uuid/uuid.tcl
../../tcllib-fossil/modules/struct/tree_c.tcl
../../tcllib-fossil/modules/base32/base32hex_c.tcl
../../tcllib-fossil/modules/base64/base64c.tcl
../../tcllib-fossil/modules/base64/uuencode.tcl
../../tcllib-fossil/modules/base64/yencode.tcl
../../tcllib-fossil/modules/sha1/sha1c.tcl
../../tcllib-fossil/modules/md5/md5c.tcl
../../tcllib-fossil/modules/crc/crcc.tcl
../../tcllib-fossil/modules/crc/sum.tcl
../../tcllib-fossil/modules/crc/crc32.tcl
../../tcllib-fossil/modules/md5crypt/md5cryptc.tcl
../../tcllib-fossil/modules/struct/queue_c.tcl
../../tcllib-fossil/modules/rc4/rc4c.tcl
../../tcllib-fossil/modules/sha1/sha256c.tcl
../../tcllib-fossil/modules/struct/stack_c.tcl
../../tcllib-fossil/modules/dns/ipMoreC.tcl
)
set -e
outDir=''
function cleanup() {
local localOutDir
|
| ︙ | ︙ |