Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No text on the GUI #11

Closed
trebmuh opened this issue Mar 10, 2018 · 8 comments
Closed

No text on the GUI #11

trebmuh opened this issue Mar 10, 2018 · 8 comments

Comments

@trebmuh
Copy link
Contributor

trebmuh commented Mar 10, 2018

built from 83f5c4d on a Debian stretch up-to-date (GCC 6.3.0), the GUI appears like this:

dragonfly

The audio still sounds to be processed (standalone version tested) when:

  • I moved the 3 sliders on the right (which should be Dry/Earl/Lat)
  • I'm blindly going to the second tab (which should be Presets) and click where it should be written the different name of the reverb available (Bright Room, Large Chamber, ...etc)
  • I'm blindly turning the knob on the left

The build doesn't look to print any error but a bunch of warnings (IDK if they're meaningful or not):

$ make
make -C freeverb3
make[1] : on entre dans le répertoire « /xxx/xxx/xxx/xxx/xxx/xxx/dragonfly-reverb/dragonfly-reverb/freeverb3 »
cc libsamplerate2/samplerate.c -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c99  -I. -DLIBSRATE2_FLOAT -c -o samplerate.c.o
cc libsamplerate2/samplerate_common.c -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c99  -I. -DLIBSRATE2_FLOAT -c -o samplerate_common.c.o
cc libsamplerate2/src_common.c -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c99  -I. -DLIBSRATE2_FLOAT -c -o src_common.c.o
cc libsamplerate2/src_linear.c -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c99  -I. -DLIBSRATE2_FLOAT -c -o src_linear.c.o
cc libsamplerate2/src_sinc.c -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c99  -I. -DLIBSRATE2_FLOAT -c -o src_sinc.c.o
cc libsamplerate2/src_zoh.c -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c99  -I. -DLIBSRATE2_FLOAT -c -o src_zoh.c.o
g++ freeverb/allpass.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o allpass.cpp.o
In file included from ./freeverb/efilter.hpp:36:0,
                 from ./freeverb/allpass.hpp:30,
                 from freeverb/allpass.cpp:22:
./freeverb/efilter_t.hpp: In member function ‘float fv3::lfo_f::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:42:0,
                 from ./freeverb/allpass.hpp:30,
                 from freeverb/allpass.cpp:22:
./freeverb/efilter_t.hpp: In member function ‘double fv3::lfo_::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:48:0,
                 from ./freeverb/allpass.hpp:30,
                 from freeverb/allpass.cpp:22:
./freeverb/efilter_t.hpp: In member function ‘long double fv3::lfo_l::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
freeverb/allpass.cpp: In member function ‘void fv3::allpassm_f::setsize(long int, long int)’:
freeverb/allpass.cpp:156:3: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
   if(size <= 0) return; if(modsize < 0) modsize = 0;
   ^~
freeverb/allpass.cpp:156:25: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
   if(size <= 0) return; if(modsize < 0) modsize = 0;
                         ^~
freeverb/allpass.cpp: In member function ‘void fv3::allpass3_f::setsize(long int, long int, long int, long int)’:
freeverb/allpass.cpp:322:3: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
   if(size1 <= 0||size2 <= 0||size3 <= 0) return; if(size1mod < 0) size1mod = 0;
   ^~
freeverb/allpass.cpp:322:50: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
   if(size1 <= 0||size2 <= 0||size3 <= 0) return; if(size1mod < 0) size1mod = 0;
                                                  ^~
g++ freeverb/biquad.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o biquad.cpp.o
g++ freeverb/comb.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o comb.cpp.o
freeverb/comb.cpp: In member function ‘void fv3::combm_f::setsize(long int, long int)’:
freeverb/comb.cpp:153:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
  if(size <= 0) return; if(modsize < 0) modsize = 0;
  ^~
freeverb/comb.cpp:153:24: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
  if(size <= 0) return; if(modsize < 0) modsize = 0;
                        ^~
g++ freeverb/delay.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o delay.cpp.o
freeverb/delay.cpp: In member function ‘void fv3::delaym_f::setsize(long int, long int)’:
freeverb/delay.cpp:146:3: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
   if(size <= 0) return; if(modsize < 0) modsize = 0;
   ^~
freeverb/delay.cpp:146:25: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
   if(size <= 0) return; if(modsize < 0) modsize = 0;
                         ^~
g++ freeverb/delayline.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o delayline.cpp.o
g++ freeverb/earlyref.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o earlyref.cpp.o
In file included from ./freeverb/efilter.hpp:36:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from ./freeverb/earlyref.hpp:28,
                 from freeverb/earlyref.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘float fv3::lfo_f::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:42:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from ./freeverb/earlyref.hpp:28,
                 from freeverb/earlyref.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘double fv3::lfo_::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:48:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from ./freeverb/earlyref.hpp:28,
                 from freeverb/earlyref.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘long double fv3::lfo_l::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
g++ freeverb/efilter.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o efilter.cpp.o
In file included from ./freeverb/efilter.hpp:36:0,
                 from freeverb/efilter.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘float fv3::lfo_f::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:42:0,
                 from freeverb/efilter.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘double fv3::lfo_::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:48:0,
                 from freeverb/efilter.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘long double fv3::lfo_l::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
g++ freeverb/revbase.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o revbase.cpp.o
In file included from ./freeverb/efilter.hpp:36:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from freeverb/revbase.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘float fv3::lfo_f::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:42:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from freeverb/revbase.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘double fv3::lfo_::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:48:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from freeverb/revbase.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘long double fv3::lfo_l::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
g++ freeverb/src.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o src.cpp.o
In file included from ./freeverb/efilter.hpp:36:0,
                 from ./freeverb/src.hpp:27,
                 from freeverb/src.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘float fv3::lfo_f::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:42:0,
                 from ./freeverb/src.hpp:27,
                 from freeverb/src.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘double fv3::lfo_::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:48:0,
                 from ./freeverb/src.hpp:27,
                 from freeverb/src.cpp:21:
./freeverb/efilter_t.hpp: In member function ‘long double fv3::lfo_l::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
g++ freeverb/slot.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o slot.cpp.o
g++ freeverb/utils.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o utils.cpp.o
g++ freeverb/zrev.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o zrev.cpp.o
In file included from ./freeverb/efilter.hpp:36:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from ./freeverb/zrev.hpp:25,
                 from freeverb/zrev.cpp:22:
./freeverb/efilter_t.hpp: In member function ‘float fv3::lfo_f::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:42:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from ./freeverb/zrev.hpp:25,
                 from freeverb/zrev.cpp:22:
./freeverb/efilter_t.hpp: In member function ‘double fv3::lfo_::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:48:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from ./freeverb/zrev.hpp:25,
                 from freeverb/zrev.cpp:22:
./freeverb/efilter_t.hpp: In member function ‘long double fv3::lfo_l::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
g++ freeverb/zrev2.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I. -DLIBSRATE2_FLOAT -DLIBFV3_FLOAT -Wno-unused-parameter -c -o zrev2.cpp.o
In file included from ./freeverb/efilter.hpp:36:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from ./freeverb/zrev.hpp:25,
                 from ./freeverb/zrev2.hpp:25,
                 from freeverb/zrev2.cpp:22:
./freeverb/efilter_t.hpp: In member function ‘float fv3::lfo_f::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:42:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from ./freeverb/zrev.hpp:25,
                 from ./freeverb/zrev2.hpp:25,
                 from freeverb/zrev2.cpp:22:
./freeverb/efilter_t.hpp: In member function ‘double fv3::lfo_::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ./freeverb/efilter.hpp:48:0,
                 from ./freeverb/src.hpp:27,
                 from ./freeverb/revbase.hpp:29,
                 from ./freeverb/zrev.hpp:25,
                 from ./freeverb/zrev2.hpp:25,
                 from freeverb/zrev2.cpp:22:
./freeverb/efilter_t.hpp: In member function ‘long double fv3::lfo_l::processarc()’:
./freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
./freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
make[1] : on quitte le répertoire « /xxx/xxx/xxx/xxx/xxx/xxx/dragonfly-reverb/dragonfly-reverb/freeverb3 »
make -C dpf/dgl
make[1] : on entre dans le répertoire « /xxx/xxx/xxx/xxx/xxx/xxx/dragonfly-reverb/dragonfly-reverb/dpf/dgl »
g++ src/Application.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I/usr/include/libdrm -I. -Isrc -Wno-type-limits -fpermissive -Wno-misleading-indentation -Wno-shift-negative-value -c -o src/Application.cpp.o
g++ src/Color.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I/usr/include/libdrm -I. -Isrc -Wno-type-limits -fpermissive -Wno-misleading-indentation -Wno-shift-negative-value -c -o src/Color.cpp.o
g++ src/Geometry.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I/usr/include/libdrm -I. -Isrc -Wno-type-limits -fpermissive -Wno-misleading-indentation -Wno-shift-negative-value -c -o src/Geometry.cpp.o
g++ src/Image.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I/usr/include/libdrm -I. -Isrc -Wno-type-limits -fpermissive -Wno-misleading-indentation -Wno-shift-negative-value -c -o src/Image.cpp.o
g++ src/ImageWidgets.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I/usr/include/libdrm -I. -Isrc -Wno-type-limits -fpermissive -Wno-misleading-indentation -Wno-shift-negative-value -c -o src/ImageWidgets.cpp.o
g++ src/NanoVG.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I/usr/include/libdrm -I. -Isrc -Wno-type-limits -fpermissive -Wno-misleading-indentation -Wno-shift-negative-value -c -o src/NanoVG.cpp.o
g++ src/Resources.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I/usr/include/libdrm -I. -Isrc -Wno-type-limits -fpermissive -Wno-misleading-indentation -Wno-shift-negative-value -c -o src/Resources.cpp.o
g++ src/Widget.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I/usr/include/libdrm -I. -Isrc -Wno-type-limits -fpermissive -Wno-misleading-indentation -Wno-shift-negative-value -c -o src/Widget.cpp.o
g++ src/Window.cpp -Wall -Wextra -pipe -MD -MP -fPIC -DPIC -DNDEBUG -O2 -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -fvisibility=hidden -std=c++11 -fvisibility-inlines-hidden  -I/usr/include/libdrm -I. -Isrc -Wno-type-limits -fpermissive -Wno-misleading-indentation -Wno-shift-negative-value -c -o src/Window.cpp.o
rm -f ../libdgl.a
ar crs ../libdgl.a src/Application.cpp.o src/Color.cpp.o src/Geometry.cpp.o src/Image.cpp.o src/ImageWidgets.cpp.o src/NanoVG.cpp.o src/Resources.cpp.o src/Widget.cpp.o src/Window.cpp.o
make[1] : on quitte le répertoire « /xxx/xxx/xxx/xxx/xxx/xxx/dragonfly-reverb/dragonfly-reverb/dpf/dgl »
make all -C plugins/dragonfly-reverb
make[1] : on entre dans le répertoire « /xxx/xxx/xxx/xxx/xxx/xxx/dragonfly-reverb/dragonfly-reverb/plugins/dragonfly-reverb »
g++ DragonflyReverbPlugin.cpp -Wall -Wextra -pipe -fPIC -DPIC -DNDEBUG -O2 -ffast-math -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -mfpmath=sse -fvisibility=hidden -DHAVE_DGL -DHAVE_JACK -DHAVE_LIBLO -std=c++0x -std=gnu++0x -fvisibility-inlines-hidden  -I. -I../../dpf/distrho -I../../dpf/dgl -I../../freeverb3 -MD -MP -c -o DragonflyReverbPlugin.cpp.o
In file included from ../../freeverb3/freeverb/efilter.hpp:36:0,
                 from ../../freeverb3/freeverb/src.hpp:27,
                 from ../../freeverb3/freeverb/revbase.hpp:29,
                 from ../../freeverb3/freeverb/earlyref.hpp:28,
                 from DragonflyReverbPlugin.hpp:19,
                 from DragonflyReverbPlugin.cpp:18:
../../freeverb3/freeverb/efilter_t.hpp: In member function ‘float fv3::lfo_f::processarc()’:
../../freeverb3/freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
../../freeverb3/freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ../../freeverb3/freeverb/efilter.hpp:42:0,
                 from ../../freeverb3/freeverb/src.hpp:27,
                 from ../../freeverb3/freeverb/revbase.hpp:29,
                 from ../../freeverb3/freeverb/earlyref.hpp:28,
                 from DragonflyReverbPlugin.hpp:19,
                 from DragonflyReverbPlugin.cpp:18:
../../freeverb3/freeverb/efilter_t.hpp: In member function ‘double fv3::lfo_::processarc()’:
../../freeverb3/freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
../../freeverb3/freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
In file included from ../../freeverb3/freeverb/efilter.hpp:48:0,
                 from ../../freeverb3/freeverb/src.hpp:27,
                 from ../../freeverb3/freeverb/revbase.hpp:29,
                 from ../../freeverb3/freeverb/earlyref.hpp:28,
                 from DragonflyReverbPlugin.hpp:19,
                 from DragonflyReverbPlugin.cpp:18:
../../freeverb3/freeverb/efilter_t.hpp: In member function ‘long double fv3::lfo_l::processarc()’:
../../freeverb3/freeverb/efilter_t.hpp:176:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(out < -1) out = -1; if(out > 1) out = 1;
     ^~
../../freeverb3/freeverb/efilter_t.hpp:176:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     if(out < -1) out = -1; if(out > 1) out = 1;
                            ^~
g++ DragonflyReverbUI.cpp -Wall -Wextra -pipe -fPIC -DPIC -DNDEBUG -O2 -ffast-math -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -mfpmath=sse -fvisibility=hidden -DHAVE_DGL -DHAVE_JACK -DHAVE_LIBLO -std=c++0x -std=gnu++0x -fvisibility-inlines-hidden  -I. -I../../dpf/distrho -I../../dpf/dgl -I../../freeverb3 -MD -MP -c -o DragonflyReverbUI.cpp.o
In file included from DragonflyReverbUI.cpp:19:0:
DragonflyReverbUI.hpp: In constructor ‘DISTRHO::DragonflyReverbUI::DragonflyReverbUI()’:
DragonflyReverbUI.hpp:62:37: warning: ‘DISTRHO::DragonflyReverbUI::fImgTabOn’ will be initialized after [-Wreorder]
     Image fImgBackground,fImgTabOff,fImgTabOn;
                                     ^~~~~~~~~
DragonflyReverbUI.hpp:62:26: warning:   ‘DGL::Image DISTRHO::DragonflyReverbUI::fImgTabOff’ [-Wreorder]
     Image fImgBackground,fImgTabOff,fImgTabOn;
                          ^~~~~~~~~~
DragonflyReverbUI.cpp:35:1: warning:   when initialized here [-Wreorder]
 DragonflyReverbUI::DragonflyReverbUI()
 ^~~~~~~~~~~~~~~~~
g++ DragonflyReverbArtwork.cpp -Wall -Wextra -pipe -fPIC -DPIC -DNDEBUG -O2 -ffast-math -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -mfpmath=sse -fvisibility=hidden -DHAVE_DGL -DHAVE_JACK -DHAVE_LIBLO -std=c++0x -std=gnu++0x -fvisibility-inlines-hidden  -I. -I../../dpf/distrho -I../../dpf/dgl -I../../freeverb3 -MD -MP -c -o DragonflyReverbArtwork.cpp.o
g++ NotoSans_Regular.ttf.cpp -Wall -Wextra -pipe -fPIC -DPIC -DNDEBUG -O2 -ffast-math -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -mfpmath=sse -fvisibility=hidden -DHAVE_DGL -DHAVE_JACK -DHAVE_LIBLO -std=c++0x -std=gnu++0x -fvisibility-inlines-hidden  -I. -I../../dpf/distrho -I../../dpf/dgl -I../../freeverb3 -MD -MP -c -o NotoSans_Regular.ttf.cpp.o
mkdir -p ../../bin
g++ DragonflyReverbPlugin.cpp.o DragonflyReverbUI.cpp.o DragonflyReverbArtwork.cpp.o NotoSans_Regular.ttf.cpp.o ../../dpf/distrho/DistrhoPluginMain.cpp ../../dpf/distrho/DistrhoUIMain.cpp ../../dpf/libdgl.a ../../freeverb3/*.cpp.o ../../freeverb3/*.c.o -Wall -Wextra -pipe -fPIC -DPIC -DNDEBUG -O2 -ffast-math -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -mfpmath=sse -fvisibility=hidden -DHAVE_DGL -DHAVE_JACK -DHAVE_LIBLO -std=c++0x -std=gnu++0x -fvisibility-inlines-hidden  -I. -I../../dpf/distrho -I../../dpf/dgl -I../../freeverb3 -fdata-sections -ffunction-sections -Wl,--gc-sections -Wl,-O1 -Wl,--as-needed -Wl,--strip-all -Wl,--no-undefined  -lGL -lX11 -ljack -DDISTRHO_PLUGIN_TARGET_JACK -o ../../bin/DragonflyReverb
In file included from ../../dpf/distrho/src/../src/DistrhoPluginChecks.h:20:0,
                 from ../../dpf/distrho/src/../DistrhoPlugin.hpp:22,
                 from ../../dpf/distrho/src/DistrhoPluginInternal.hpp:20,
                 from ../../dpf/distrho/src/DistrhoPlugin.cpp:17,
                 from ../../dpf/distrho/DistrhoPluginMain.cpp:17:
./DistrhoPluginInfo.h:58:15: warning: ‘presets’ defined but not used [-Wunused-variable]
 static Preset presets[24] = {
               ^~~~~~~
In file included from ../../dpf/distrho/src/../src/DistrhoPluginChecks.h:20:0,
                 from ../../dpf/distrho/src/../DistrhoUI.hpp:21,
                 from ../../dpf/distrho/src/DistrhoUIInternal.hpp:20,
                 from ../../dpf/distrho/src/DistrhoUI.cpp:17,
                 from ../../dpf/distrho/DistrhoUIMain.cpp:17:
./DistrhoPluginInfo.h:58:15: warning: ‘presets’ defined but not used [-Wunused-variable]
 static Preset presets[24] = {
               ^~~~~~~
mkdir -p ../../bin/DragonflyReverb.lv2
g++ DragonflyReverbPlugin.cpp.o ../../dpf/distrho/DistrhoPluginMain.cpp ../../freeverb3/*.cpp.o ../../freeverb3/*.c.o -Wall -Wextra -pipe -fPIC -DPIC -DNDEBUG -O2 -ffast-math -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -mfpmath=sse -fvisibility=hidden -DHAVE_DGL -DHAVE_JACK -DHAVE_LIBLO -std=c++0x -std=gnu++0x -fvisibility-inlines-hidden  -I. -I../../dpf/distrho -I../../dpf/dgl -I../../freeverb3 -fdata-sections -ffunction-sections -Wl,--gc-sections -Wl,-O1 -Wl,--as-needed -Wl,--strip-all -Wl,--no-undefined  -shared -DDISTRHO_PLUGIN_TARGET_LV2 -o ../../bin/DragonflyReverb.lv2/DragonflyReverb_dsp.so
In file included from ../../dpf/distrho/src/../src/DistrhoPluginChecks.h:20:0,
                 from ../../dpf/distrho/src/../DistrhoPlugin.hpp:22,
                 from ../../dpf/distrho/src/DistrhoPluginInternal.hpp:20,
                 from ../../dpf/distrho/src/DistrhoPlugin.cpp:17,
                 from ../../dpf/distrho/DistrhoPluginMain.cpp:17:
./DistrhoPluginInfo.h:58:15: warning: ‘presets’ defined but not used [-Wunused-variable]
 static Preset presets[24] = {
               ^~~~~~~
mkdir -p ../../bin/DragonflyReverb.lv2
g++ DragonflyReverbUI.cpp.o DragonflyReverbArtwork.cpp.o NotoSans_Regular.ttf.cpp.o ../../dpf/distrho/DistrhoUIMain.cpp ../../dpf/libdgl.a ../../freeverb3/*.cpp.o ../../freeverb3/*.c.o -Wall -Wextra -pipe -fPIC -DPIC -DNDEBUG -O2 -ffast-math -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -mfpmath=sse -fvisibility=hidden -DHAVE_DGL -DHAVE_JACK -DHAVE_LIBLO -std=c++0x -std=gnu++0x -fvisibility-inlines-hidden  -I. -I../../dpf/distrho -I../../dpf/dgl -I../../freeverb3 -fdata-sections -ffunction-sections -Wl,--gc-sections -Wl,-O1 -Wl,--as-needed -Wl,--strip-all -Wl,--no-undefined  -lGL -lX11 -shared -DDISTRHO_PLUGIN_TARGET_LV2 -o ../../bin/DragonflyReverb.lv2/DragonflyReverb_ui.so
In file included from ../../dpf/distrho/src/../src/DistrhoPluginChecks.h:20:0,
                 from ../../dpf/distrho/src/../DistrhoUI.hpp:21,
                 from ../../dpf/distrho/src/DistrhoUIInternal.hpp:20,
                 from ../../dpf/distrho/src/DistrhoUI.cpp:17,
                 from ../../dpf/distrho/DistrhoUIMain.cpp:17:
./DistrhoPluginInfo.h:58:15: warning: ‘presets’ defined but not used [-Wunused-variable]
 static Preset presets[24] = {
               ^~~~~~~
mkdir -p ../../bin
g++ DragonflyReverbPlugin.cpp.o DragonflyReverbUI.cpp.o DragonflyReverbArtwork.cpp.o NotoSans_Regular.ttf.cpp.o ../../dpf/distrho/DistrhoPluginMain.cpp ../../dpf/distrho/DistrhoUIMain.cpp ../../dpf/libdgl.a ../../freeverb3/*.cpp.o ../../freeverb3/*.c.o -Wall -Wextra -pipe -fPIC -DPIC -DNDEBUG -O2 -ffast-math -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections -mfpmath=sse -fvisibility=hidden -DHAVE_DGL -DHAVE_JACK -DHAVE_LIBLO -std=c++0x -std=gnu++0x -fvisibility-inlines-hidden  -I. -I../../dpf/distrho -I../../dpf/dgl -I../../freeverb3 -fdata-sections -ffunction-sections -Wl,--gc-sections -Wl,-O1 -Wl,--as-needed -Wl,--strip-all -Wl,--no-undefined  -lGL -lX11 -shared -DDISTRHO_PLUGIN_TARGET_VST -o ../../bin/DragonflyReverb-vst.so
In file included from ../../dpf/distrho/src/../src/DistrhoPluginChecks.h:20:0,
                 from ../../dpf/distrho/src/../DistrhoPlugin.hpp:22,
                 from ../../dpf/distrho/src/DistrhoPluginInternal.hpp:20,
                 from ../../dpf/distrho/src/DistrhoPlugin.cpp:17,
                 from ../../dpf/distrho/DistrhoPluginMain.cpp:17:
./DistrhoPluginInfo.h:58:15: warning: ‘presets’ defined but not used [-Wunused-variable]
 static Preset presets[24] = {
               ^~~~~~~
In file included from ../../dpf/distrho/src/../src/DistrhoPluginChecks.h:20:0,
                 from ../../dpf/distrho/src/../DistrhoUI.hpp:21,
                 from ../../dpf/distrho/src/DistrhoUIInternal.hpp:20,
                 from ../../dpf/distrho/src/DistrhoUI.cpp:17,
                 from ../../dpf/distrho/DistrhoUIMain.cpp:17:
./DistrhoPluginInfo.h:58:15: warning: ‘presets’ defined but not used [-Wunused-variable]
 static Preset presets[24] = {
               ^~~~~~~
make[1] : on quitte le répertoire « /xxx/xxx/xxx/xxx/xxx/xxx/dragonfly-reverb/dragonfly-reverb/plugins/dragonfly-reverb »
make -C dpf/utils/lv2-ttl-generator
make[1] : on entre dans le répertoire « /xxx/xxx/xxx/xxx/xxx/xxx/dragonfly-reverb/dragonfly-reverb/dpf/utils/lv2-ttl-generator »
cc lv2_ttl_generator.c  -o ../lv2_ttl_generator  -ldl
make[1] : on quitte le répertoire « /xxx/xxx/xxx/xxx/xxx/xxx/dragonfly-reverb/dragonfly-reverb/dpf/utils/lv2-ttl-generator »
Generate ttl data for './DragonflyReverb_dsp.so', basename: 'DragonflyReverb_dsp'
Writing manifest.ttl... done!
Writing DragonflyReverb_dsp.ttl... done!
Writing DragonflyReverb_ui.ttl... done!
Writing presets.ttl... done!

Last, when closing the GUI of the standalone, it prints:

*** Error in `bin/DragonflyReverb': free(): invalid pointer: 0x0000556295aeb5e0 ***
======= Backtrace: =========
/lib/x86_64-linux-gnu/libc.so.6(+0x70bcb)[0x7f64a8c2fbcb]
/lib/x86_64-linux-gnu/libc.so.6(+0x76f96)[0x7f64a8c35f96]
/lib/x86_64-linux-gnu/libc.so.6(+0x777de)[0x7f64a8c367de]
bin/DragonflyReverb(+0x11821)[0x5562959ee821]
bin/DragonflyReverb(+0x16d64)[0x5562959f3d64]
bin/DragonflyReverb(+0x17290)[0x5562959f4290]
bin/DragonflyReverb(+0xba0e)[0x5562959e8a0e]
bin/DragonflyReverb(+0xe309)[0x5562959eb309]
bin/DragonflyReverb(+0x7d5d)[0x5562959e4d5d]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf1)[0x7f64a8bdf2b1]
bin/DragonflyReverb(+0x7ffa)[0x5562959e4ffa]
======= Memory map: ========
5562959dd000-556295c0e000 r-xp 00000000 08:11 27792539                   /xxx/xxx/xxx/xxx/xxx/xxx/dragonfly-reverb/dragonfly-reverb/bin/DragonflyReverb
556295e0e000-556295e10000 r--p 00231000 08:11 27792539                   /xxx/xxx/xxx/xxx/xxx/xxx/dragonfly-reverb/dragonfly-reverb/bin/DragonflyReverb
556295e10000-556295e12000 rw-p 00233000 08:11 27792539                   /xxx/xxx/xxx/xxx/xxx/xxx/dragonfly-reverb/dragonfly-reverb/bin/DragonflyReverb
556295ec3000-5562968f5000 rw-p 00000000 00:00 0                          [heap]
7f6494000000-7f6494021000 rw-p 00000000 00:00 0 
7f6494021000-7f6498000000 ---p 00000000 00:00 0 
7f6499623000-7f6499e03000 rw-s 101044000 00:06 9461                      /dev/dri/card0
7f6499e03000-7f6499f83000 rw-s 100ec4000 00:06 9461                      /dev/dri/card0
7f6499f83000-7f649a103000 rw-s 100d44000 00:06 9461                      /dev/dri/card0
7f649a103000-7f649b188000 rw-p 00000000 00:00 0 
7f64a0000000-7f64a0021000 rw-p 00000000 00:00 0 
7f64a0021000-7f64a4000000 ---p 00000000 00:00 0 
7f64a4032000-7f64a4033000 ---p 00000000 00:00 0 
7f64a4033000-7f64a4393000 rw-p 00000000 00:00 0 
7f64a4393000-7f64a43cb000 r-xp 00000000 08:11 3020629                    /usr/lib/x86_64-linux-gnu/s2tc/libtxc_dxtn.so
7f64a43cb000-7f64a45cb000 ---p 00038000 08:11 3020629                    /usr/lib/x86_64-linux-gnu/s2tc/libtxc_dxtn.so
7f64a45cb000-7f64a45cc000 r--p 00038000 08:11 3020629                    /usr/lib/x86_64-linux-gnu/s2tc/libtxc_dxtn.so
7f64a45cc000-7f64a45cd000 rw-p 00039000 08:11 3020629                    /usr/lib/x86_64-linux-gnu/s2tc/libtxc_dxtn.so
7f64a45cd000-7f64a45e6000 r-xp 00000000 08:11 19267674                   /lib/x86_64-linux-gnu/libz.so.1.2.8
7f64a45e6000-7f64a47e5000 ---p 00019000 08:11 19267674                   /lib/x86_64-linux-gnu/libz.so.1.2.8
7f64a47e5000-7f64a47e6000 r--p 00018000 08:11 19267674                   /lib/x86_64-linux-gnu/libz.so.1.2.8
7f64a47e6000-7f64a47e7000 rw-p 00019000 08:11 19267674                   /lib/x86_64-linux-gnu/libz.so.1.2.8
7f64a47e7000-7f64a47ef000 r-xp 00000000 08:11 2897325                    /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1
7f64a47ef000-7f64a49ef000 ---p 00008000 08:11 2897325                    /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1
7f64a49ef000-7f64a49f0000 r--p 00008000 08:11 2897325                    /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1
7f64a49f0000-7f64a49f1000 rw-p 00009000 08:11 2897325                    /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1
7f64a49f1000-7f64a4a04000 r-xp 00000000 08:11 19267634                   /lib/x86_64-linux-gnu/libgpg-error.so.0.21.0
7f64a4a04000-7f64a4c03000 ---p 00013000 08:11 19267634                   /lib/x86_64-linux-gnu/libgpg-error.so.0.21.0
7f64a4c03000-7f64a4c04000 r--p 00012000 08:11 19267634                   /lib/x86_64-linux-gnu/libgpg-error.so.0.21.0
7f64a4c04000-7f64a4c05000 rw-p 00013000 08:11 19267634                   /lib/x86_64-linux-gnu/libgpg-error.so.0.21.0
7f64a4c05000-7f64a4c10000 r-xp 00000000 08:11 2897371                    /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7f64a4c10000-7f64a4e0f000 ---p 0000b000 08:11 2897371                    /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7f64a4e0f000-7f64a4e10000 r--p 0000a000 08:11 2897371                    /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7f64a4e10000-7f64a4e11000 rw-p 0000b000 08:11 2897371                    /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7f64a4e11000-7f64a4e18000 r-xp 00000000 08:11 2897368                    /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7f64a4e18000-7f64a5017000 ---p 00007000 08:11 2897368                    /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7f64a5017000-7f64a5018000 r--p 00006000 08:11 2897368                    /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7f64a5018000-7f64a5019000 rw-p 00007000 08:11 2897368                    /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7f64a5019000-7f64a503b000 r-xp 00000000 08:11 2897327                    /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0
7f64a503b000-7f64a523a000 ---p 00022000 08:11 2897327                    /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0
7f64a523a000-7f64a523b000 r--p 00021000 08:11 2897327                    /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0
7f64a523b000-7f64a523c000 rw-p 00022000 08:11 2897327                    /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0
7f64a523c000-7f64a5343000 r-xp 00000000 08:11 19267697                   /lib/x86_64-linux-gnu/libgcrypt.so.20.1.6
7f64a5343000-7f64a5543000 ---p 00107000 08:11 19267697                   /lib/x86_64-linux-gnu/libgcrypt.so.20.1.6
7f64a5543000-7f64a5545000 r--p 00107000 08:11 19267697                   /lib/x86_64-linux-gnu/libgcrypt.so.20.1.6
7f64a5545000-7f64a554c000 rw-p 00109000 08:11 19267697                   /lib/x86_64-linux-gnu/libgcrypt.so.20.1.6
7f64a554c000-7f64a5bf3000 r-xp 00000000 08:11 4457834                    /usr/lib/x86_64-linux-gnu/dri/i915_dri.so
7f64a5bf3000-7f64a5df2000 ---p 006a7000 08:11 4457834                    /usr/lib/x86_64-linux-gnu/dri/i915_dri.so
7f64a5df2000-7f64a5e34000 r--p 006a6000 08:11 4457834                    /usr/lib/x86_64-linux-gnu/dri/i915_dri.so
7f64a5e34000-7f64a5e3c000 rw-p 006e8000 08:11 4457834                    /usr/lib/x86_64-linux-gnu/dri/i915_dri.so
7f64a5e3c000-7f64a5e44000 rw-p 00000000 00:00 0 
7f64a5e44000-7f64a5e57000 r-xp 00000000 08:11 19268108                   /lib/x86_64-linux-gnu/libbsd.so.0.8.3
7f64a5e57000-7f64a6057000 ---p 00013000 08:11 19268108                   /lib/x86_64-linux-gnu/libbsd.so.0.8.3
7f64a6057000-7f64a6058000 r--p 00013000 08:11 19268108                   /lib/x86_64-linux-gnu/libbsd.so.0.8.3
7f64a6058000-7f64a6059000 rw-p 00014000 08:11 19268108                   /lib/x86_64-linux-gnu/libbsd.so.0.8.3
7f64a6059000-7f64a605a000 rw-p 00000000 00:00 0 
7f64a605a000-7f64a605f000 r-xp 00000000 08:11 2891085                    /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f64a605f000-7f64a625e000 ---p 00005000 08:11 2891085                    /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f64a625e000-7f64a625f000 r--p 00004000 08:11 2891085                    /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f64a625f000-7f64a6260000 rw-p 00005000 08:11 2891085                    /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f64a6260000-7f64a6263000 r-xp 00000000 08:11 2891083                    /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f64a6263000-7f64a6462000 ---p 00003000 08:11 2891083                    /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f64a6462000-7f64a6463000 r--p 00002000 08:11 2891083                    /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f64a6463000-7f64a6464000 rw-p 00003000 08:11 2891083                    /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f64a6464000-7f64a646b000 r-xp 00000000 08:11 19267609                   /lib/x86_64-linux-gnu/librt-2.24.so
7f64a646b000-7f64a666a000 ---p 00007000 08:11 19267609                   /lib/x86_64-linux-gnu/librt-2.24.so
7f64a666a000-7f64a666b000 r--p 00006000 08:11 19267609                   /lib/x86_64-linux-gnu/librt-2.24.so
7f64a666b000-7f64a666c000 rw-p 00007000 08:11 19267609                   /lib/x86_64-linux-gnu/librt-2.24.so
7f64a666c000-7f64a66ba000 r-xp 00000000 08:11 2895643                    /usr/lib/x86_64-linux-gnu/libopus.so.0.5.3
7f64a66ba000-7f64a68b9000 ---p 0004e000 08:11 2895643                    /usr/lib/x86_64-linux-gnu/libopus.so.0.5.3
7f64a68b9000-7f64a68ba000 r--p 0004d000 08:11 2895643                    /usr/lib/x86_64-linux-gnu/libopus.so.0.5.3
7f64a68ba000-7f64a68bb000 rw-p 0004e000 08:11 2895643                    /usr/lib/x86_64-linux-gnu/libopus.so.0.5.3
7f64a68bb000-7f64a68be000 r-xp 00000000 08:11 19267595                   /lib/x86_64-linux-gnu/libdl-2.24.so
7f64a68be000-7f64a6abd000 ---p 00003000 08:11 19267595                   /lib/x86_64-linux-gnu/libdl-2.24.so
7f64a6abd000-7f64a6abe000 r--p 00002000 08:11 19267595                   /lib/x86_64-linux-gnu/libdl-2.24.so
7f64a6abe000-7f64a6abf000 rw-p 00003000 08:11 19267595                   /lib/x86_64-linux-gnu/libdl-2.24.so
7f64a6abf000-7f64a6ad7000 r-xp 00000000 08:11 19267607                   /lib/x86_64-linux-gnu/libpthread-2.24.so
7f64a6ad7000-7f64a6cd6000 ---p 00018000 08:11 19267607                   /lib/x86_64-linux-gnu/libpthread-2.24.so
7f64a6cd6000-7f64a6cd7000 r--p 00017000 08:11 19267607                   /lib/x86_64-linux-gnu/libpthread-2.24.so
7f64a6cd7000-7f64a6cd8000 rw-p 00018000 08:11 19267607                   /lib/x86_64-linux-gnu/libpthread-2.24.so
7f64a6cd8000-7f64a6cdc000 rw-p 00000000 00:00 0 
7f64a6cdc000-7f64a6cea000 r-xp 00000000 08:11 2891623                    /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f64a6cea000-7f64a6eea000 ---p 0000e000 08:11 2891623                    /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f64a6eea000-7f64a6eeb000 r--p 0000e000 08:11 2891623                    /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f64a6eeb000-7f64a6eec000 rw-p 0000f000 08:11 2891623                    /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f64a6eec000-7f64a6ef1000 r-xp 00000000 08:11 2891646                    /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f64a6ef1000-7f64a70f0000 ---p 00005000 08:11 2891646                    /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f64a70f0000-7f64a70f1000 r--p 00004000 08:11 2891646                    /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f64a70f1000-7f64a70f2000 rw-p 00005000 08:11 2891646                    /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f64a70f2000-7f64a70f6000 r-xp 00000000 08:11 2891630                    /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f64a70f6000-7f64a72f5000 ---p 00004000 08:11 2891630                    /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f64a72f5000-7f64a72f6000 r--p 00003000 08:11 2891630                    /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f64a72f6000-7f64a72f7000 rw-p 00004000 08:11 2891630                    /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f64a72f7000-7f64a730f000 r-xp 00000000 08:11 2891634                    /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f64a730f000-7f64a750f000 ---p 00018000 08:11 2891634                    /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f64a750f000-7f64a7511000 r--p 00018000 08:11 2891634                    /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f64a7511000-7f64a7512000 rw-p 0001a000 08:11 2891634                    /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f64a7512000-7f64a7539000 r-xp 00000000 08:11 2891087                    /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f64a7539000-7f64a7738000 ---p 00027000 08:11 2891087                    /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f64a7738000-7f64a7739000 r--p 00026000 08:11 2891087                    /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f64a7739000-7f64a773a000 rw-p 00027000 08:11 2891087                    /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f64a773a000-7f64a773b000 r-xp 00000000 08:11 2891628                    /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f64a773b000-7f64a793a000 ---p 00001000 08:11 2891628                    /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f64a793a000-7f64a793b000 r--p 00000000 08:11 2891628                    /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f64a793b000-7f64a793c000 rw-p 00001000 08:11 2891628                    /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f64a793c000-7f64a7941000 r-xp 00000000 08:11 2891640                    /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f64a7941000-7f64a7b40000 ---p 00005000 08:11 2891640                    /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f64a7b40000-7f64a7b41000 r--p 00004000 08:11 2891640                    /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f64a7b41000-7f64a7b42000 rw-p 00005000 08:11 2891640                    /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f64a7b42000-7f64a7b44000 r-xp 00000000 08:11 2891642                    /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f64a7b44000-7f64a7d43000 ---p 00002000 08:11 2891642                    /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f64a7d43000-7f64a7d44000 r--p 00001000 08:11 2891642                    /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f64a7d44000-7f64a7d45000 rw-p 00002000 08:11 2891642                    /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f64a7d45000-7f64a7d56000 r-xp 00000000 08:11 2891275                    /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f64a7d56000-7f64a7f55000 ---p 00011000 08:11 2891275                    /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f64a7f55000-7f64a7f56000 r--p 00010000 08:11 2891275                    /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f64a7f56000-7f64a7f57000 rw-p 00011000 08:11 2891275                    /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f64a7f57000-7f64a7f81000 r-xp 00000000 08:11 2891625                    /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f64a7f81000-7f64a8180000 ---p 0002a000 08:11 2891625                    /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f64a8180000-7f64a8184000 r--p 00029000 08:11 2891625                    /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f64a8184000-7f64a8185000 rw-p 0002d000 08:11 2891625                    /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f64a8185000-7f64a8186000 rw-p 00000000 00:00 0 
7f64a8186000-7f64a8187000 r-xp 00000000 08:11 2891644                    /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f64a8187000-7f64a8386000 ---p 00001000 08:11 2891644                    /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f64a8386000-7f64a8387000 r--p 00000000 08:11 2891644                    /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f64a8387000-7f64a8388000 rw-p 00001000 08:11 2891644                    /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f64a8388000-7f64a838e000 r-xp 00000000 08:11 2891638                    /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f64a838e000-7f64a858d000 ---p 00006000 08:11 2891638                    /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f64a858d000-7f64a858e000 r--p 00005000 08:11 2891638                    /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f64a858e000-7f64a858f000 rw-p 00006000 08:11 2891638                    /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f64a858f000-7f64a8591000 r-xp 00000000 08:11 2891636                    /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f64a8591000-7f64a8790000 ---p 00002000 08:11 2891636                    /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f64a8790000-7f64a8791000 r--p 00001000 08:11 2891636                    /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f64a8791000-7f64a8792000 rw-p 00002000 08:11 2891636                    /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f64a8792000-7f64a8794000 r-xp 00000000 08:11 2891632                    /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f64a8794000-7f64a8993000 ---p 00002000 08:11 2891632                    /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f64a8993000-7f64a8994000 r--p 00001000 08:11 2891632                    /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f64a8994000-7f64a8995000 rw-p 00002000 08:11 2891632                    /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f64a8995000-7f64a89bc000 r-xp 00000000 08:11 19268219                   /lib/x86_64-linux-gnu/libexpat.so.1.6.2
7f64a89bc000-7f64a8bbc000 ---p 00027000 08:11 19268219                   /lib/x86_64-linux-gnu/libexpat.so.1.6.2
7f64a8bbc000-7f64a8bbe000 r--p 00027000 08:11 19268219                   /lib/x86_64-linux-gnu/libexpat.so.1.6.2
7f64a8bbe000-7f64a8bbf000 rw-p 00029000 08:11 19268219                   /lib/x86_64-linux-gnu/libexpat.so.1.6.2
7f64a8bbf000-7f64a8d54000 r-xp 00000000 08:11 19267592                   /lib/x86_64-linux-gnu/libc-2.24.so
7f64a8d54000-7f64a8f54000 ---p 00195000 08:11 19267592                   /lib/x86_64-linux-gnu/libc-2.24.so
7f64a8f54000-7f64a8f58000 r--p 00195000 08:11 19267592                   /lib/x86_64-linux-gnu/libc-2.24.so
7f64a8f58000-7f64a8f5a000 rw-p 00199000 08:11 19267592                   /lib/x86_64-linux-gnu/libc-2.24.so
7f64a8f5a000-7f64a8f5e000 rw-p 00000000 00:00 0 
7f64a8f5e000-7f64a8f74000 r-xp 00000000 08:11 19267671                   /lib/x86_64-linux-gnu/libgcc_s.so.1
7f64a8f74000-7f64a9173000 ---p 00016000 08:11 19267671                   /lib/x86_64-linux-gnu/libgcc_s.so.1
7f64a9173000-7f64a9174000 r--p 00015000 08:11 19267671                   /lib/x86_64-linux-gnu/libgcc_s.so.1
7f64a9174000-7f64a9175000 rw-p 00016000 08:11 19267671                   /lib/x86_64-linux-gnu/libgcc_s.so.1
7f64a9175000-7f64a9278000 r-xp 00000000 08:11 19267596                   /lib/x86_64-linux-gnu/libm-2.24.so
7f64a9278000-7f64a9477000 ---p 00103000 08:11 19267596                   /lib/x86_64-linux-gnu/libm-2.24.so
7f64a9477000-7f64a9478000 r--p 00102000 08:11 19267596                   /lib/x86_64-linux-gnu/libm-2.24.so
7f64a9478000-7f64a9479000 rw-p 00103000 08:11 19267596                   /lib/x86_64-linux-gnu/libm-2.24.so
7f64a9479000-7f64a95eb000 r-xp 00000000 08:11 2884217                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.22
7f64a95eb000-7f64a97eb000 ---p 00172000 08:11 2884217                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.22
7f64a97eb000-7f64a97f5000 r--p 00172000 08:11 2884217                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.22
7f64a97f5000-7f64a97f7000 rw-p 0017c000 08:11 2884217                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.22
7f64a97f7000-7f64a97fb000 rw-p 00000000 00:00 0 
7f64a97fb000-7f64a9840000 r-xp 00000000 08:11 2886903                    /usr/lib/x86_64-linux-gnu/libjack.so.0.1.0
7f64a9840000-7f64a9a40000 ---p 00045000 08:11 2886903                    /usr/lib/x86_64-linux-gnu/libjack.so.0.1.0
7f64a9a40000-7f64a9a42000 r--p 00045000 08:11 2886903                    /usr/lib/x86_64-linux-gnu/libjack.so.0.1.0
7f64a9a42000-7f64a9a43000 rw-p 00047000 08:11 2886903                    /usr/lib/x86_64-linux-gnu/libjack.so.0.1.0
7f64a9a43000-7f64a9b7d000 r-xp 00000000 08:11 2891091                    /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f64a9b7d000-7f64a9d7d000 ---p 0013a000 08:11 2891091                    /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f64a9d7d000-7f64a9d7e000 r--p 0013a000 08:11 2891091                    /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f64a9d7e000-7f64a9d83000 rw-p 0013b000 08:11 2891091                    /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f64a9d83000-7f64a9df1000 r-xp 00000000 08:11 2891648                    /usr/lib/x86_64-linux-gnu/libGL.so.1.2.0
7f64a9df1000-7f64a9ff0000 ---p 0006e000 08:11 2891648                    /usr/lib/x86_64-linux-gnu/libGL.so.1.2.0
7f64a9ff0000-7f64a9ff3000 r--p 0006d000 08:11 2891648                    /usr/lib/x86_64-linux-gnu/libGL.so.1.2.0
7f64a9ff3000-7f64a9ff4000 rw-p 00070000 08:11 2891648                    /usr/lib/x86_64-linux-gnu/libGL.so.1.2.0
7f64a9ff4000-7f64a9ff5000 rw-p 00000000 00:00 0 
7f64a9ff5000-7f64aa018000 r-xp 00000000 08:11 19267587                   /lib/x86_64-linux-gnu/ld-2.24.so
7f64aa02e000-7f64aa02f000 rw-s 00000000 00:05 551529                     /drm mm object (deleted)
7f64aa02f000-7f64aa030000 rw-s 101874000 00:06 9461                      /dev/dri/card0
7f64aa030000-7f64aa031000 rw-s 101873000 00:06 9461                      /dev/dri/card0
7f64aa031000-7f64aa039000 rw-s 10186a000 00:06 9461                      /dev/dri/card0
7f64aa039000-7f64aa041000 rw-s 101862000 00:06 9461                      /dev/dri/card0
7f64aa041000-7f64aa049000 rw-s 10185a000 00:06 9461                      /dev/dri/card0
7f64aa049000-7f64aa051000 rw-s 101852000 00:06 9461                      /dev/dri/card0
7f64aa051000-7f64aa059000 rw-s 10184a000 00:06 9461                      /dev/dri/card0
7f64aa059000-7f64aa061000 rw-s 101842000 00:06 9461                      /dev/dri/card0
7f64aa061000-7f64aa069000 rw-s 10183a000 00:06 9461                      /dev/dri/card0
7f64aa069000-7f64aa0d1000 rw-p 00000000 00:00 0 
7f64aa0d1000-7f64aa0d2000 ---p 00000000 00:00 0 
7f64aa0d2000-7f64aa152000 rw-p 00000000 00:00 0 
7f64aa152000-7f64aa153000 ---p 00000000 00:00 0 
7f64aa153000-7f64aa1e1000 rw-p 00000000 00:00 0 
7f64aa1e1000-7f64aa1e2000 rw-s 101872000 00:06 9461                      /dev/dri/card0
7f64aa1e2000-7f64aa1ea000 rw-s 101832000 00:06 9461                      /dev/dri/card0
7f64aa1ea000-7f64aa1f2000 rw-s 10182a000 00:06 9461                      /dev/dri/card0
7f64aa1f2000-7f64aa1f5000 rw-s 101827000 00:06 9461                      /dev/dri/card0
7f64aa1f5000-7f64aa1f8000 rw-s 101824000 00:06 9461                      /dev/dri/card0
7f64aa1f8000-7f64aa1f9000 rw-s 00000000 00:05 550459                     /drm mm object (deleted)
7f64aa1f9000-7f64aa1fa000 rw-s 00000000 00:05 551533                     /drm mm object (deleted)
7f64aa1fd000-7f64aa20f000 rw-s 00000000 00:14 17830                      /dev/shm/jack-shm-registry
7f64aa214000-7f64aa218000 rw-p 00000000 00:00 0 
7f64aa218000-7f64aa219000 r--p 00023000 08:11 19267587                   /lib/x86_64-linux-gnu/ld-2.24.so
7f64aa219000-7f64aa21a000 rw-p 00024000 08:11 19267587                   /lib/x86_64-linux-gnu/ld-2.24.so
7f64aa21a000-7f64aa21b000 rw-p 00000000 00:00 0 
7ffe099d9000-7ffe099fd000 rw-p 00000000 00:00 0                          [stack]
7ffe09ab8000-7ffe09aba000 r--p 00000000 00:00 0                          [vvar]
7ffe09aba000-7ffe09abc000 r-xp 00000000 00:00 0                          [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]
Abandon

Hope that helps.

@rghvdberg
Copy link
Contributor

Interesting ...
Could you run the jack app ( /bin/DragonflyReverb ) from a terminal and see if it outputs any errors or info ?

@trebmuh
Copy link
Contributor Author

trebmuh commented Mar 10, 2018

@rghvdberg : unless I misunderstood your message, running the jack app from a terminal is the way I got the BackTrace + Memory map message in my previous message. There is no more message than those on the terminal output.

@rghvdberg
Copy link
Contributor

please recompile with

make clean
make DEBUG=true

see if we can get more info about what's going on
For now I have no clue, missing lib maybe ?

@trebmuh
Copy link
Contributor Author

trebmuh commented Mar 10, 2018

please recompile with

make clean
make DEBUG=true

see if we can get more info about what's going on

Done. No more info when launched from a terminal.

For now I have no clue, missing lib maybe ?

I've checked and the following libs are installed on my system: libx11-dev libgl1-mesa-dev libjack-jackd2-dev

@rghvdberg
Copy link
Contributor

As discussed on irc in #opensourcemusicians, it could be a system specific issue because text in MVerb isn't rendered either.

@trebmuh
Copy link
Contributor Author

trebmuh commented Mar 11, 2018

Confirmed that it looks to be that. I've tested it on another computer and I can see the texts on the display. Maybe we can put a note that it needs GL >= 3.0 somewhere?
Thanks for the time spent on investigating with this.

@trebmuh trebmuh closed this as completed Mar 11, 2018
@trebmuh trebmuh reopened this Mar 11, 2018
@michaelwillis
Copy link
Owner

Thanks, I really should go through and document this thing top to bottom.

@trebmuh
Copy link
Contributor Author

trebmuh commented Mar 11, 2018

All good here, I'm closing then.

@trebmuh trebmuh closed this as completed Mar 11, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants