For ICSim folders are missing on github
Hello ,
I am trying to open ICsimulator by running command ./icsim vcan0 but it is giving error as ' No such file or directory'.
this issue is due to missing folders present on git-hub.
'Icsim' and 'controls' these folders are missing on github currently.
Please help me to get these missing folders.
I am reachable at [email protected]

You need to compile using make on the root directory.
I have the same problem Just typing "make" leads to this:
gcc -I/usr/include/SDL2 -c -o icsim.o icsim.c
icsim.c:19:10: fatal error: SDL2/SDL.h: Datei oder Verzeichnis nicht gefunden
19 | #include <SDL2/SDL.h>
| ^~~~~~~~~~~~
compilation terminated.
make: *** [
First, the execution of make (in which folder etc.) should be added in the Usage description. Since if you try to follow stepwise (a) clone repo, b) execute ./icsim ...) users experience that a small but necessary piece was missing.
In my case this was solved after
- sudo apt-get install libsdl2-dev libsdl2-image-dev can-utils
- make (from icsim root directory
Then the command /icsim vcan0 succeeded (given, that vcan0 was setup in advance).
I have the same problem Just typing "make" leads to this:
gcc -I/usr/include/SDL2 -c -o icsim.o icsim.c icsim.c:19:10: fatal error: SDL2/SDL.h: Datei oder Verzeichnis nicht gefunden 19 | #include <SDL2/SDL.h> | ^~~~~~~~~~~~ compilation terminated. make: *** [: icsim.o] Fehler 1
First, the execution of make (in which folder etc.) should be added in the Usage description. Since if you try to follow stepwise (a) clone repo, b) execute ./icsim ...) users experience that a small but necessary piece was missing.
In my case this was solved after
1. sudo apt-get install libsdl2-dev libsdl2-image-dev can-utils 2. make (from icsim root directoryThen the command /icsim vcan0 succeeded (given, that vcan0 was setup in advance).
This helped a lot. Thanks champ