Difference between revisions of "Tools"
Jump to navigation
Jump to search
(→The tools: jvm tools are dead.) |
Hzwakenberg (talk | contribs) |
||
Line 1: | Line 1: | ||
+ | LibertyEiffel provides many tools besides the [[compile|compiler]]. |
||
− | [[Category:Smarteiffel]] |
||
− | |||
− | SmartEiffel provides many tools besides the [[compile|compiler]]. |
||
All those tools use the [[configuration file]]. |
All those tools use the [[configuration file]]. |
||
Line 33: | Line 31: | ||
=== Installing === |
=== Installing === |
||
− | * [[install]]: installs the |
+ | * [[install]]: installs the LibertyEiffel tools |
== The system core == |
== The system core == |
||
Line 39: | Line 37: | ||
If you are interested by how the system works, either by sheer curiosity, either because you want to modify it, here are some explanations. |
If you are interested by how the system works, either by sheer curiosity, either because you want to modify it, here are some explanations. |
||
− | If you want to create a new |
+ | If you want to create a new LibertyEiffel-oriented tool, this information is important too; also look at [[tool_class:EXTERNAL_TOOL|<tt>EXTERNAL_TOOL</tt>]]. |
* [[class loading]] |
* [[class loading]] |
Revision as of 20:50, 5 September 2014
LibertyEiffel provides many tools besides the compiler.
All those tools use the configuration file.
The tools
Tool box
- se: a facade to all those tools
Compiling
- clean: remove the useless C files
- compile: the compiler (calls compile_to_c)
- compile_to_c: the C compiler core
- extract_internals: the tentative inter-program object sharing tool
Searching and documenting
- eiffeldoc: generates the whole documentation of a project
- finder: find a class
- pretty: make your source file pretty
- short: generates the interface documentation of a single class
Debugging
- ace_check: check an ACE file
- class_check: check the syntax and the semantics of a source code
- eiffeltest: the future testing tool
Installing
- install: installs the LibertyEiffel tools
The system core
If you are interested by how the system works, either by sheer curiosity, either because you want to modify it, here are some explanations.
If you want to create a new LibertyEiffel-oriented tool, this information is important too; also look at EXTERNAL_TOOL.
- class loading
- syntactic analysis
- semantic analysis
- the optimizer
- the visitors
- code generation