Difference between revisions of "Tools"
Jump to navigation
Jump to search
Hzwakenberg (talk | contribs) m |
|||
(6 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
[[Category: Tool]] |
[[Category: Tool]] |
||
− | + | Liberty Eiffel provides many tools besides the [[compile|compiler]]. |
|
− | All |
+ | All these tools use the [[configuration file]]. |
== The tools == |
== The tools == |
||
− | === |
+ | === Toolbox === |
* [[se]]: a facade to all those tools |
* [[se]]: a facade to all those tools |
||
Line 12: | Line 12: | ||
=== Compiling === |
=== Compiling === |
||
− | * [[clean]]: remove |
+ | * [[clean]]: remove temporary C files after compilation |
* [[compile]]: the compiler (calls [[compile_to_c]]) |
* [[compile]]: the compiler (calls [[compile_to_c]]) |
||
* [[compile_to_c]]: the C compiler core |
* [[compile_to_c]]: the C compiler core |
||
* [[extract_internals]]: the tentative inter-program object sharing tool |
* [[extract_internals]]: the tentative inter-program object sharing tool |
||
− | * [[wrappers_generator]]: a tools to generate low-level Eiffel wrappers for C code |
+ | * [[Wrapping_C_libraries|wrappers_generator]]: a tools to generate low-level Eiffel wrappers for C code |
=== Searching and documenting === |
=== Searching and documenting === |
||
* [[eiffeldoc]]: generates the whole documentation of a project |
* [[eiffeldoc]]: generates the whole documentation of a project |
||
− | * [[finder]]: |
+ | * [[finder]]: finds a class |
− | * [[pretty]]: |
+ | * [[pretty]]: makes your source file pretty |
* [[short]]: generates the interface documentation of a single class |
* [[short]]: generates the interface documentation of a single class |
||
− | === |
+ | === Testing === |
− | * [[ace_check]]: |
+ | * [[ace_check]]: checks an [[ACE|ACE file]] |
− | * [[class_check]]: |
+ | * [[class_check]]: checks the [[parsing|syntax]] and the [[semantics]] of a source code |
− | * [[eiffeltest]]: the |
+ | * [[eiffeltest]]: the Liberty Eiffel testing tool |
+ | * [[mock]]: the Liberty Eiffel mock tool |
||
=== Installing === |
=== Installing === |
||
− | * [[install]]: installs the |
+ | * [[install]]: installs the Liberty Eiffel tools |
== The system core == |
== The system core == |
||
− | If you are interested |
+ | If you are interested in how the system works, either by sheer curiosity, or because you want to modify it, here are some explanations. |
− | If you want to create a new |
+ | If you want to create a new Liberty Eiffel-oriented tool, this information is important too; also look at [[tool_class:EXTERNAL_TOOL|<tt>EXTERNAL_TOOL</tt>]]. |
* [[class loading]] |
* [[class loading]] |
Latest revision as of 13:29, 30 July 2024
Liberty Eiffel provides many tools besides the compiler.
All these tools use the configuration file.
The tools
Toolbox
- se: a facade to all those tools
Compiling
- clean: remove temporary C files after compilation
- compile: the compiler (calls compile_to_c)
- compile_to_c: the C compiler core
- extract_internals: the tentative inter-program object sharing tool
- wrappers_generator: a tools to generate low-level Eiffel wrappers for C code
Searching and documenting
- eiffeldoc: generates the whole documentation of a project
- finder: finds a class
- pretty: makes your source file pretty
- short: generates the interface documentation of a single class
Testing
- ace_check: checks an ACE file
- class_check: checks the syntax and the semantics of a source code
- eiffeltest: the Liberty Eiffel testing tool
- mock: the Liberty Eiffel mock tool
Installing
- install: installs the Liberty Eiffel tools
The system core
If you are interested in how the system works, either by sheer curiosity, or because you want to modify it, here are some explanations.
If you want to create a new Liberty Eiffel-oriented tool, this information is important too; also look at EXTERNAL_TOOL.
- class loading
- syntactic analysis
- semantic analysis
- the optimizer
- the visitors
- code generation