Running on Raspbian Buster OS #146
Replies: 4 comments 5 replies
-
also I want to know if it is possible... |
Beta Was this translation helpful? Give feedback.
-
So far I could have it running on my raspberry Pi4 (yeah) I followed the steps as reported in the past issues (see #39 and #62): modified ../CMakeLists.txt, added this line:target_link_libraries(sdrpp PRIVATE stdc++fs) to allow sdrpp to link, failed without "stdc++fs"$ cmake .. then modify ../CMakeLists.txt, added this line: $ cmake .. pi@raspberrypi:~/src/SDRPlusPlus/build $ sudo make install Now, when I launch it I have the Open GL problem already found by other users, i.e: pi@raspberrypi:~/src/SDRPlusPlus/build $ ./sdrpp $ sudo apt-get install mesa-utils pi@raspberrypi: Finally here is the trick to make it work: Just make the sdrpp command to be preceeded by that option... pi@raspberrypi:~/src/SDRPlusPlus/build $ LIBGL_ALWAYS_SOFTWARE=1 ./sdrpp And boom, it works! |
Beta Was this translation helpful? Give feedback.
-
Moreover I implemented this suggestion: and I can now launch sdrpp with the simple command: |
Beta Was this translation helpful? Give feedback.
-
though i did miss a semicolon off one line |
Beta Was this translation helpful? Give feedback.
-
Has anyone successfully installed and ran this on a pi 3/4 using Raspbian OS? If so would love some pointers as i'm still new to Linux and haven't gotten it working yet.
Beta Was this translation helpful? Give feedback.
All reactions