Skip to content

Commit

Permalink
fix(#2790):fix images
Browse files Browse the repository at this point in the history
  • Loading branch information
Yanich96 committed Mar 5, 2024
1 parent b46d9c1 commit 805d79c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _posts/2024/2024-02-06-about-caching-in-eo.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Let's look at the compilation scheme using C++ as an example,
to imagine the build process in compiled languages:


![Picture 1](/Users/yanaalekseeva/IdeaProjects/news.eolang.org/images/ccach.svg)
![Picture 1](/images/ccach.svg)

1) First, preprocessor gets the input files. Input files are code files and header files.
The preprocessor removes comments from the code and converts the code into in accordance
Expand Down Expand Up @@ -130,17 +130,17 @@ which contains the goals necessary for working with EO code.
As was written above, the assembly of projects in `Maven` occurs in a certain order of phases.
In the diagram you can see the main phases and their goals for the EO version of the compiler (specify version):

![Picture 3](/Users/yanaalekseeva/IdeaProjects/news.eolang.org/images/EO.svg)
![Picture 3](/images/EO.svg)

In [Picture 3](/Users/yanaalekseeva/IdeaProjects/news.eolang.org/images/EO.svg) the goals from the `eo-maven-plugin`
In [Picture 3](/images/EO.svg) the goals from the `eo-maven-plugin`
are highlighted in green.


But the actual work with EO code takes place in `AssembleMojo`.
`AssembleMojo` is the goal consisting of other goals that work with the EO file
[Picture 4](/Users/yanaalekseeva/IdeaProjects/news.eolang.org/images/AssembleMojo.svg).
[Picture 4](/images/AssembleMojo.svg).

![Picture 4](/Users/yanaalekseeva/IdeaProjects/news.eolang.org/images/AssembleMojo.svg)
![Picture 4](/images/AssembleMojo.svg)

Each goal in `AssembleMojo` is a specific compilation step for EO code, and we need to use
caching at each step to speed up the assembly of the EO program.
Expand Down

0 comments on commit 805d79c

Please sign in to comment.