ICSim icon indicating copy to clipboard operation
ICSim copied to clipboard

For ICSim folders are missing on github

Open nitinronge91 opened this issue 3 years ago • 3 comments

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] ICsim_folder_missing

nitinronge91 avatar Mar 12 '22 05:03 nitinronge91

You need to compile using make on the root directory.

donadelden avatar Mar 08 '23 13:03 donadelden

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 directory

Then the command /icsim vcan0 succeeded (given, that vcan0 was setup in advance).

DoctorMG avatar Mar 24 '23 16:03 DoctorMG

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 directory

Then the command /icsim vcan0 succeeded (given, that vcan0 was setup in advance).

This helped a lot. Thanks champ

IndieMash avatar Aug 29 '23 07:08 IndieMash