tl
supports some compiler options. These can either be specified on the command line or inside a tlconfig.lua
file.
When running tl
, the compiler will try to read the compilation options from a file called tlconfig.lua
inside the current working directory.
Here is an example of a tlconfig.lua
file:
return {
include_dir = {
"folder1/",
"folder2/"
},
}
Command line option | Config key | Type | Relevant Commands | Description |
---|---|---|---|---|
-l --require |
{string} |
run |
Require a module prior to executing the script. This is similar in behavior to the -l flag in the Lua interpreter. |
|
-I --include-dir |
include_dir |
{string} |
check gen run |
Prepend this directory to the module search path. |
--gen-compat |
gen_compat |
string |
gen run |
Generate compatibility code for targeting different Lua VM versions. See below for details. |
--gen-target |
gen_target |
string |
gen run |
Minimum targeted Lua version for generated code. Options are 5.1 , 5.3 and 5.4 . See below for details. |
--keep-hashbang |
gen |
Preserve hashbang line (#! ) at the top of file if present. |
||
-p --pretend |
gen |
Don't compile/write to any files, but type check and log what files would be written to. | ||
--wdisable |
disable_warnings |
{string} |
check run |
Disable the given warnings. |
--werror |
warning_error |
{string} |
check run |
Promote the given warnings to errors. |
--global-env-def |
global_env_def |
string |
check gen run |
Specify a definition module declaring any custom globals predefined in your Lua environment. See the declaration files page for details. |
Teal is a Lua dialect that most closely resembles Lua 5.3-5.4, but it is able
to target Lua 5.1 (including LuaJIT) and Lua 5.2 as well. The compiler attempts
to produce code that, given an input .tl
file, generates the same behavior
on various Lua versions.
However, there are limitations in the portability across Lua versions, and the
options --gen-target
and --gen-compat
give you some control over the generated
code.
The configuration option gen_target
(--gen-target
in the CLI) allow you to
choose what is the minimum Lua version you want to target. Valid options are
5.1
(for Lua 5.1 and above, including LuaJIT) and 5.3
for Lua 5.3 and above.
Using 5.1
, Teal will generate compatibility code for the integer division operator,
a compatibility forward declaration for table.unpack
and will use the bit32
library for bitwise operators.
Using 5.3
, Teal will generate code using the native //
and bitwise operators.
The option 5.4
is equivalent to 5.3
, but it also allows using the <close>
variable annotation. Since that is incompatible with other Lua versions, using
this option requires using --gen-compat=off
.
Code generated with --gen-target=5.1
will still run on Lua 5.3+, but not
optimally: the native Lua 5.3+ operators have better performance and better
precision. For example, if you are targeting Lua 5.1, the Teal code x // y
will generate math.floor(x / y)
instead.
If you do not use these options, the Teal compiler will infer a default target implicitly.
If set explicitly via the --gen-target
flag of the tl
CLI (or the equivalent
options in the programmatic API), the generated code will target the Lua
version requested: 5.1, 5.3 or 5.4.
If the code generation target is not set explicitly via --gen-target
, Teal
will target the Lua version most compatible with the version of the Lua VM
under which the compiler itself is running. For example, if running under
something that reports _VERSION
as "Lua 5.1"
or "Lua 5.2"
(such as LuaJIT),
it will generate 5.1-compatible code. If running under Lua 5.3 or greater, it
will output code that uses 5.3 extensions.
The stand-alone tl
binaries are built using Lua 5.4, so they default to
generating 5.3-compatible code. If you install tl
using LuaRocks, the CLI
will use the Lua version you use with LuaRocks, so it will default to that
Lua's version.
If you require the tl
Lua module and use the tl.loader()
, it will do the
implicit version selection, picking the right choice based on the Lua version
you're running it on.
Another source of incompatibility across Lua versions is the standard library. This is mostly fixable via compatibility wrappers, implemented by the compat53 Lua library.
Teal's own standard library definition as used by its type checker most closely resembles that of Lua 5.3+, and the compiler's code generator can generate code that uses compat53 in order to produce consistent behavior across Lua versions, at the cost of adding a dependency when running on older Lua versions. For Lua 5.3 and above, compat53 is never needed.
To avoid forcing a dependency on Teal users running Lua 5.1, 5.2 or LuaJIT,
especially those who take care to avoid incompatibilities in the Lua standard
library and hence wouldn't need compat53 in their code, Teal offers three
modes of operation for compatibility wrapper generation via the gen_compat
flag (and --gen-compat
CLI option):
off
- you can choose to disable generating compatibility code entirely. When type checking, Teal will still assume the standard library is 5.3-compatible. If you run the Teal module on an older Lua version and use any functionality from the standard library that is not available on that version, you will get a runtime error, similar to trying to run Lua 5.3 code on an older version.optional
(default) - Teal will generate compatibility code which initializes the the compat53 library wrappingrequire
with apcall
, so that it doesn't produce a failure if the library is missing. This means that, if compat53 is installed, you'll get the compliant standard library behavior when running on Lua 5.2 and below, but if compat53 is missing, you'll get the same behavior as described foroff
above.required
- Teal will generate compatibility code which initializes compat53 with a plainrequire
, meaning that you'll get a runtime error when loading the generated module from Lua if compat53 is missing. You can use this option if you are distributing the generated Lua code for users running different Lua versions and you want to ensure that your Teal code behaves the same way on all Lua versions, even if at the cost of an additional dependency.
To make the Teal compiler aware of global variables in your execution environment,
you may pass a declaration module to the compiler using the --global-env-def
flag
in the CLI or the global_env_def
string in tlconfig.lua
.
For more information, see the declaration files page.