Hi There,
The current OwlControl binary is not usable on debian (an other Linux distributions) because one cannot open/load files. This is due to a known bug with the JUCE FileChooser (Freeze when opening FileChooser - #37 by tomotello - Linux - JUCE). The program freezes when trying to select a patch or firmware. However, I managed to compile it successfully but I had to patch code and apply the following two changes:
The file chooser
#elif JUCE_MAC || JUCE_LINUX
by
#elif JUCE_MAC
at line 103 of …/modules/juce_gui_basics/filebrowser/juce_FileChooser.cpp
Getting it to compile because of current gcc version complaining about overloading:
“./JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c” line 60 and replaced it with this:
static inline long int jlround(double x) {
Best wishes,
L