[TOC]
\include "cli-help.sh"
In addition, you can specify more search paths using the environment variable THORIN_PLUGIN_PATH
.
Thorin will look for plugins in this priority:
- The current working directory.
- All paths specified via
-D
(in the given order). - All paths specified in the environment variable
THORIN_PLUGIN_PATH
(in the given order). path/to/thorin.exe/../../lib/thorin
CMAKE_INSTALL_PREFIX/lib/thorin
-
You can increase the log level with
-V
.- No
-V
corresponds to thorin::Log::Level::Error. -V
corresponds to thorin::Log::Level::Warn.-VV
corresponds to thorin::Log::Level::Info.-VVV
corresponds to thorin::Log::Level::Verbose.-VVVV
corresponds to thorin::Log::Level::Debug. This output only exists in a Debug build of Thorin.
- No
-
You can trigger a breakpoint upon construction of a thorin::Def with a specific global id.
For example, this will trigger a breakpoint if the thorin::Def with [global id](@ref thorin::Def::gid)
4223
is being created:thorin -b 4223 in.thorin
-
You can also trigger a breakpoint at some other very specific places like when a check for alpha equivalence fails via
--break-on-alpha-unequal
.