Table of Contents
Lutin permit simply to compile applications and library.
To simply understand the use, we will use a simple library:
compile a module:
It is really simple:
Option working:
Lutin have a complex option methodologie. We can consider 3 part of the option:
- global option
- target option
- modules
Global options:
Globals option is parse first and manage global setting of the build (not specific of a target)
this keep the last value config set
Display help:
Availlable everywhere ...
You can see in this help that it take a litle time to react. The first time you run lutin, it parse all the file in your sub-directory. But the system(OS) keep the data in cash, then the next time it is faster.
At the end of the help you an see an help about the etk librery with the associated help.
Build in color:
Display build line in pretty print mode:
when an error apear, the gcc or clang compile line can be really unreadable:
whith this option you can transform this not obvious line in a readable line:
result:
lutin log:
Lutin have an internal log system. To enable or disable it just select your debug level with the option:
The level availlables are:
- 0: None
- 1: error
- 2: warning (default)
- 3: info
- 4: debug
- 5: verbose
- 6: extreme_verbose
Select the number of CPU core used:
By default lutin manage only 1 CPU core (faster to debug) but for speed requirement you can use use multiple core:
Force rebuild all:
Sometime it is needed to rebuild all the program, just do:
Force strip all library and programs:
Force strip of output binary (remove symboles)
Manage Cross compilation:
The main objective of lutin is managing the cross compilation to build from linux to other platform:
For android you can use:
Build in debug mode:
To developp it is fasted with debug tools
You can desire to have compilation optimisation when you build in debug mode:
Execute your program after building it:
You can execute some action in a single line for a module:
Why use ?run
istead of direct calling the binary?
This is simple: you does nok knoww where the binary is installed... when you build for linux in debug it will be set in out/Linux_x86_64/debug/staging/clang/edn/edn.app/
for edn application. Note that the path is distinct for gcc/clang, debug/release, Linux/windows/Android/..., 64/32 bits, and for every applications ...
Then it is really easy to run the wrong binary.
Install your program after building it:
You can install your build module:
This option is not availlablke on all platform ...
Index: