Skip to content
Snippets Groups Projects
Commit 0563d299 authored by rodolakis's avatar rodolakis
Browse files

2.4 explanation

parent 5801aa2f
No related branches found
No related tags found
1 merge request!2Fanny whatdoesitmean
......@@ -115,6 +115,24 @@ configure/CONFIG:18: *** EPICS_BASE must be set in a configure/RELEASE file. St
```
</details>
<details>
<summary>what does this mean?</summary>
This error message indicates that the EPICS_BASE environment variable is not defined in your configure/RELEASE file.
EPICS_BASE is a mandatory environment variable that points to the location of the EPICS base installation directory. The configure/RELEASE file is used to define EPICS-related environment variables required for building an IOC.
Here's an example of how to set the EPICS_BASE variable in the configure/RELEASE file:
```
EPICS_BASE=/path/to/epics/base
```
where "/path/to/epics/base" points to your EPICS base installation directory.
Once you have set the EPICS_BASE variable in the configure/RELEASE file, try building your IOC again and the error should be resolved.
</details>
### 2.5 Resolve build error #1
Modify **configure/RELEASE** so that ``EPICS_BASE`` is defined.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment