tcltest: do a better job of cleanup up after tests
[jimtcl.git] / make-bootstrap-jim
blobc1754f70620226e878b8ee2531afa2e72f281e3a
1 #!/bin/sh
3 # This script writes to stdout, a single source file (e.g. jimsh0.c)
4 # which can be compiled to provide a bootstrap version of jimsh.
5 # e.g. cc -o jimsh0 jimsh0.c
7 makeext()
9 source="$1"
10 basename=`basename "$source" .tcl`
11 cat <<EOF
12 int Jim_${basename}Init(Jim_Interp *interp)
14 if (Jim_PackageProvide(interp, "$basename", "1.0", JIM_ERRMSG))
15 return JIM_ERR;
17 return Jim_EvalSource(interp, "$source", 1,
18 EOF
20 # Note: Keep newlines so that line numbers match in error messages
21 sed -e 's/^[ ]*#.*//' -e 's@\\@\\\\@g' -e 's@"@\\"@g' -e 's@^\(.*\)$@"\1\\n"@' $source
23 echo ");"
24 echo "}"
27 makeloadexts()
29 cat <<EOF
30 int Jim_InitStaticExtensions(Jim_Interp *interp)
31 EOF
32 echo "{"
33 for ext in $*; do
34 echo "extern int Jim_${ext}Init(Jim_Interp *);"
35 done
36 for ext in $*; do
37 echo "Jim_${ext}Init(interp);"
38 done
39 echo "return JIM_OK;"
40 echo "}"
43 cexts="aio readdir regexp file exec clock array"
44 tclexts="bootstrap initjimsh glob stdlib tclcompat"
46 # Note ordering
47 allexts="bootstrap aio readdir regexp file glob exec clock array stdlib tclcompat"
49 echo "/* This is single source file, bootstrap version of Jim Tcl. See http://jim.tcl.tk/ */"
51 # define some core features
52 for i in JIM_TCL_COMPAT JIM_ANSIC JIM_REGEXP HAVE_NO_AUTOCONF _JIMAUTOCONF_H; do
53 echo "#define $i"
54 done
55 echo '#define TCL_LIBRARY "."'
56 # and extensions
57 for i in $allexts; do
58 echo "#define jim_ext_$i"
59 done
61 cat <<EOF
62 #if defined(_MSC_VER)
63 #define TCL_PLATFORM_OS "windows"
64 #define TCL_PLATFORM_PLATFORM "windows"
65 #define TCL_PLATFORM_PATH_SEPARATOR ";"
66 #define HAVE_MKDIR_ONE_ARG
67 #define HAVE_SYSTEM
68 #elif defined(__MINGW32__)
69 #define TCL_PLATFORM_OS "mingw"
70 #define TCL_PLATFORM_PLATFORM "windows"
71 #define TCL_PLATFORM_PATH_SEPARATOR ";"
72 #define HAVE_MKDIR_ONE_ARG
73 #define HAVE_SYSTEM
74 #define HAVE_SYS_TIME_H
75 #define HAVE_DIRENT_H
76 #define HAVE_UNISTD_H
77 #else
78 #define TCL_PLATFORM_OS "unknown"
79 #define TCL_PLATFORM_PLATFORM "unix"
80 #define TCL_PLATFORM_PATH_SEPARATOR ":"
81 #ifdef _MINIX
82 #define vfork fork
83 #define _POSIX_SOURCE
84 #else
85 #define _GNU_SOURCE
86 #endif
87 #define HAVE_VFORK
88 #define HAVE_WAITPID
89 #define HAVE_ISATTY
90 #define HAVE_MKSTEMP
91 #define HAVE_LINK
92 #define HAVE_SYS_TIME_H
93 #define HAVE_DIRENT_H
94 #define HAVE_UNISTD_H
95 #endif
96 EOF
98 # get JIM_VERSION from auto.def
99 sed -n -e 's/^\(define JIM_VERSION.*\)/#\1/p' auto.def
101 outputsource()
103 sed -e '/#include.*jim/d' -e '/#include.*utf8/d' \
104 -e '/^#.*if.*JIM_BOOTSTRAP/,/^#endif.*JIM_BOOTSTRAP/d' \
105 -e 's/[ ]*\/\*.*\*\///' -e '/^[ ]*\/\*/,/\*\//d' $1
108 # Now output header files, removing references to jim header files
109 for i in jim-win32compat.h utf8.h jim.h jim-subcmd.h jimregexp.h ; do
110 outputsource $i
111 done
113 # Now extension source code
114 for i in $tclexts; do
115 makeext $i.tcl
116 done
117 for i in $cexts; do
118 outputsource jim-$i.c
119 done
120 makeloadexts $allexts
122 # And finally the core source code
123 for i in jim.c jim-subcmd.c utf8.c jim-format.c jimregexp.c jim-win32compat.c; do
124 outputsource $i
125 done
126 echo "#ifndef JIM_BOOTSTRAP_LIB_ONLY"
127 outputsource jim-interactive.c
128 outputsource jimsh.c
129 echo "#endif"