Skip to content
Snippets Groups Projects
Commit 187bcefa authored by rodolakis's avatar rodolakis
Browse files

2.6 explanation

parent 0fe1b18f
No related branches found
No related tags found
1 merge request!2Fanny whatdoesitmean
......@@ -203,6 +203,14 @@ make: *** [xxxApp.install] Error 2
```
</details>
<details>
<summary>what does this mean?</summary>
This error message indicates that the linker (ld) is unable to find two libraries: net and pcap. When building your IOC (Input/Output Controller) using the make command, the linker is responsible for resolving and linking all the required libraries.
The -l flag is used to specify libraries that need to be linked. In this case, the linker is looking for net and pcap. However, it is unable to locate these libraries, which results in the error.
</details>
### 2.7 Resolve build error #2
Tell the build system the net (and pcap) libraries aren't installed.
......
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