critcl_application_package(3tcl) | C Runtime In Tcl (CriTcl) | critcl_application_package(3tcl) |
critcl_application_package - CriTcl Application Package Reference
package require Tcl 8.6
package require critcl::app ?3.3.1?
package require critcl ?3.3.1?
package require platform ?1.0.2?
package require cmdline
::critcl::app::main commandline
Be welcome to the C Runtime In Tcl (short: CriTcl), a system for embedding and using C code from within Tcl [http://core.tcl-lang.org/tcl] scripts.
This document is the reference manpage for the critcl::app package. Its intended audience are developers working on critcl's internals. These commands are not needed to simply write a CriTcl script. If you are in need of an overview of the whole system instead, please go and read the Introduction To CriTcl.
This package resides in the Application Layer of CriTcl.
*================* |Applications | | critcl | | critcl::app | *================* +----------------+ |Core Packages | | critcl | | critcl::util | +----------------+ +----------------+ |Support Packages| | stubs::* | | md5, platform | | ... | +----------------+
, implementing the functionality of the CriTcl Application, and through this, the mode generate package. The actual application is (only) a shim wrapping around this package. It itself is build on top of the core package critcl.
The package exports a single command
The options are:
The following options are understood:
Ignored when generating a TEA package (see option -tea below).
Ignored when generating a TEA package (see option -tea below).
Ignored when generating a TEA package (see option -tea below).
Ignored when generating a package because this mode starts out with a unique and empty result cache. See option -pkg, below.
Ignored when generating a TEA package (see option -tea below).
Ignored when generating a TEA package (see option -tea below).
Ignored when generating a TEA package (see option -tea below). Uses of this option are cumulative.
Validated only if one of the input files for the CriTcl script actually defines and uses a custom build configuration option with that name.
Ignored when generating a TEA package (see option -tea below).
Validated only if one of the input files for the CriTcl script actually defines and uses a custom build configuration option with that name.
Ignored when generating a TEA package (see option -tea below).
Ignored when generating a package (see option -pkg, below), which starts out with a unique and empty result cache.
Ignored when generating a TEA package (see option -tea below).
Ignored when generating a TEA package (see option -tea below).
Ignored when generating a TEA package (see option -tea below).
generation. If both options, i.e. -pkg and -tea are specified the last one specified wins.
Options -clean and -force are ignored. -libdir is relevant in both this and -tea mode.
The basename of the first file is the name of the package to generate. If its file extension indicates a shared library (".so", ".sl", ".dylib", and ".dll") it is also removed from the set of input files. Each CriTcl script file is kept as part of the input. A single file without a suffix is assumed to be a CriTcl script. A file without a suffix, but other input files following is treated like the name of a shared library proper, and removed from the set of input files.
Examples:
... -pkg ... foo => Package name is: foo => Input file is: foo.tcl
... -pkg ... foo bar.tcl => Package name is: foo => Input file is: bar.tcl
... -pkg ... foo.tcl => Package name is: foo => Input file is: foo.tcl
... -pkg ... foo.so bar.tcl => Package name is: foo => Input file is: bar.tcl
Ignored when generating a TEA package (see option -tea below).
If both -pkg and -tea are specified the last occurrence wins.
-I, -L, -clean, -force, -cache, -includedir, -enable, -disable, and -with-FOO are ignored. In contrast, the option -libdir is relevant in both this and -pkg mode.
The basename of the first file is the name of the package to generate. If its file extension indicates a shared library (".so", ".sl", ".dylib", and ".dll") it is also removed from the set of input files. Each CriTcl script file is kept as part of the input. A single file without a suffix is assumed to be a CriTcl script. A file without a suffix, but other input files following is treated like the name of a shared library proper, and removed from the set of input files.
Examples:
... -tea ... foo => Package name is: foo => Input file is: foo.tcl
... -tea ... foo bar.tcl => Package name is: foo => Input file is: bar.tcl
... -tea ... foo.tcl => Package name is: foo => Input file is: foo.tcl
... -tea ... foo.so bar.tcl => Package name is: foo => Input file is: bar.tcl
The information is validated only if one of the ".critcl" input files actually defines and uses a custom build configuration option with that name.
Ignored when generating a TEA package (see option -tea below).
CriTcl can be used in three different modes of operation, called
Compile & Run was the original mode and is the default for critcl_pkg. Collects the C fragments from the CriTcl script, builds them as needed, and caches the results to improve load times later.
The second mode, Generate Package, was introduced to enable the creation of (prebuilt) deliverable packages which do not depend on the existence of a build system, i.e. C compiler, on the target machine. This was originally done through the experimental Critbind tool, and is now handled by the CriTcl Application, also named critcl.
Newly introduced with CriTcl version 3 is Generate TEA Package. This mode constructs a directory hierarchy from the package which can later be built like a regular TEA package, i.e. using
.../configure --prefix ... make all isntall
Packages generated by critcl have the following basic structure:
<TOP> +- pkgIndex.tcl +- critcl-rt.tcl +- license.terms (optional) | +- tcl (optional) | +- <tsources files> | +- <platform> +- <shared library>
Notes
The whole structure, and especially the last point, enable us to later merge the results (for the same package, and version) for multiple target platforms into a single directory structure without conflict, by simply copying the top directories over each other. The only files which can conflict are in the <TOP> and "tcl" directories, and for these we know that they are identical across targets. The result of such a merge would look like:
<TOP> +- pkgIndex.tcl +- critcl-rt.tcl +- license.terms (optional) | +- tcl (optional) | +- <tsources files> | +- <platform1> | +- <shared library1> +- <platform2> | +- <shared library2> ... +- <platformN> +- <shared libraryN>
Jean Claude Wippler, Steve Landers, Andreas Kupries
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report them at https://github.com/andreas-kupries/critcl/issues. Ideas for enhancements you may have for either package, application, and/or the documentation are also very welcome and should be reported at https://github.com/andreas-kupries/critcl/issues as well.
C code, Embedded C Code, calling C code from Tcl, code generator, compile & run, compiler, dynamic code generation, dynamic compilation, generate package, linker, on demand compilation, on-the-fly compilation
Glueing/Embedded C code
Copyright (c) Jean-Claude Wippler Copyright (c) Steve Landers Copyright (c) 2011-2024 Andreas Kupries
3.3.1 | doc |