Difference between revisions of "Tools"

From Liberty Eiffel Wiki
Jump to navigation Jump to search
m
m
 
Line 12: Line 12:
 
=== Compiling ===
 
=== Compiling ===
   
* [[clean]]: remove temporay C files after compilation
+
* [[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
Line 38: Line 38:
 
== The system core ==
 
== The system core ==
   
If you are interested by how the system works, either by sheer curiosity, or because you want to modify it, here are some explanations.
+
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 [[tool_class:EXTERNAL_TOOL|<tt>EXTERNAL_TOOL</tt>]].
 
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>]].

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

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

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.