You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi guys,
this is probably a pretty simple issue since I'm a linux novice. I'm on a managed linux (Debian) system without sudo rights.
I've installed srt and cmake via homebrew without any issues and I'm using srt-live-transmit quite often without any problem.
I've created a clone sls directory and went to the command line:
$ make
g++ -c -g slscore/SLSEpollThread.cpp -o obj/SLSEpollThread.o
In file included from slscore/SLSEpollThread.cpp:30:0:
slscore/SLSEpollThread.hpp:29:21: fatal error: srt/srt.h: No such file or directory
compilation terminated.
make: *** [Makefile:61: obj/SLSEpollThread.o] Error 1
I can only assume that the script is looking for the srt library in the wrong place since it is located at ~/.linuxbrew/Cellar/srt/1.4.4/include
I've spent a lot of time to get this whole thing running but I seem to be stuck now and need your help!
Thanks a lot!
The text was updated successfully, but these errors were encountered:
Late to the party, but you need to add the library and include search paths to the compiler flags to use the Homebrew locations when invoking make, like so:
CFLAGS="-I/opt/homebrew/Cellar/openssl@3/3.0.5/include -I/opt/homebrew/Cellar/srt/1.5.1/include -I/opt/homebrew/Cellar/srt/1.5.1/include/srt -L/opt/homebrew/Cellar/srt/1.5.1/lib -lsrt" make
Hi guys,
this is probably a pretty simple issue since I'm a linux novice. I'm on a managed linux (Debian) system without sudo rights.
I've installed srt and cmake via homebrew without any issues and I'm using srt-live-transmit quite often without any problem.
I've created a clone sls directory and went to the command line:
I can only assume that the script is looking for the srt library in the wrong place since it is located at ~/.linuxbrew/Cellar/srt/1.4.4/include
I've spent a lot of time to get this whole thing running but I seem to be stuck now and need your help!
Thanks a lot!
The text was updated successfully, but these errors were encountered: