kmatheussen / radium

A graphical music editor. A next generation tracker.
http://users.notam02.no/~kjetism/radium/
GNU General Public License v2.0
854 stars 37 forks source link

QWebEngine #1127

Closed muziker closed 6 years ago

muziker commented 6 years ago

Request for information:

Radium gui seems to use the qtwebkitwidgets, but the latest version of QT5 does not use these apis. The code has this #define USE_QWEBENGINE 0 // Can not be 1.

Does this mean there is no upgrading the gui to use qtwebengine ?

kmatheussen commented 6 years ago

qtwebkit is a separate package, maintained by 3rd party developers, but the packages are still hosted by Qt, I believe. qwebengine does not compile with mingw (meaning I would have to use microsoft compiler for windows, which I don't want) and I wasn't able to embed it the same way as qtwebkit (hadn't access to scroll bars or something like that). Ubuntu should have a package called libqtwebkit-dev you can use.

kmatheussen commented 6 years ago

Also, I don't think qwebengine is an upgrade from qtwebkit. qwebengine just uses a different library than qtwebkit.

muziker commented 6 years ago

Great! I had compiled the Qt5 project from source separately because of a conflict with another library requirement, and it did not have the qtwebkit module. So installing the qtwebkit from the separate package will get things to work? Sounds good

kmatheussen commented 6 years ago

I'm assuming the issue is solved, so I'm closing it. As far as I have seen, all distros provide qtwebkit, or you can also compile it manually.

muziker commented 6 years ago

Sorry, i've not had time to follow up to compile qwebkit in qtcreator. Yes it is probably just an incompatibility with qtwebkit and the qt5. It should be fine as long as if the user sticks to the standard distro.

On Tue, Jul 3, 2018 at 3:40 PM, Kjetil Matheussen notifications@github.com wrote:

Closed #1127 https://github.com/kmatheussen/radium/issues/1127.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#event-1713253111, or mute the thread https://github.com/notifications/unsubscribe-auth/AlZeUigEDYFWgGv_uLUBWMkW131AlNnDks5uCx_egaJpZM4U6yB2 .

muziker commented 6 years ago

I've got round to trying to compile qtwebkit as a separate module. I couldn't use the prepackaged repository versions because there's a conflict between qtbase-dev and other installed packages. This is a blocking step to using qtwebkit from the repo. I've checkedout qtwebkit tag v5.5.1 from github and tried compiling it against my version of qt5.10.0. After solving one error with the compilation, right now i'm getting this as an error. UIProcess/qt/QtWebPageSGNode.cpp:74:45: error: cannot convert ‘QSGRenderNode::RenderState::projectionMatrix’ from type ‘const QMatrix4x4* (QSGRenderNode::RenderState::)() const’ to type ‘const QMatrix4x4*’ const QMatrix4x4 *projection= state.projectionMatrix; ^~~~~~~~~~~~~~~~

state is a renderstate whose member projectionMatrix is a function that returns QMatrix4x4. I've tried various permutations of signatures and git diff the file across previous tags. There hasn't been any changes to this line. So i'm not sure how to tweak this.

kmatheussen commented 6 years ago

5.5.1? That one is probably very old. It seems latest version is for 5.9: https://download.qt.io/community_releases/ linuxfromscratch has more info here: http://www.linuxfromscratch.org/blfs/view/stable/x/qtwebkit5.html

On Wed, Jul 11, 2018 at 9:58 AM, muziker notifications@github.com wrote:

I've got round to trying to compile qtwebkit as a separate module. I couldn't use the prepackaged repository versions because there's a conflict between qtbase-dev and other installed packages. This is a blocking step to using qtwebkit from the repo. I've checkedout qtwebkit tag v5.5.1 from github and tried compiling it against my version of qt5.10.0. After solving one error with the compilation, right now i'm getting this as an error. UIProcess/qt/QtWebPageSGNode.cpp:74:45: error: cannot convert ‘QSGRenderNode::RenderState::projectionMatrix’ from type ‘const QMatrix4x4 (QSGRenderNode::RenderState::)() const’ to type ‘const QMatrix4x4’ const QMatrix4x4 *projection= state.projectionMatrix; ^~~~

state is a renderstate whose member projectionMatrix is a function that returns QMatrix4x4. I've tried various permutations of signatures and git diff the file across previous tags. There hasn't been any changes to this line. So i'm not sure how to tweak this.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-404079801, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9p5p1TUi4yprGGHKyea6ZhOMKqJUXks5uFbAWgaJpZM4U6yB2 .

muziker commented 6 years ago

My QT5 version is git tag is v5.10.0. The qtwebkit git tag version is v5.5.1 .

kmatheussen commented 6 years ago

I don't understand. 5.5.1 is several years old. Why don't you use latest version instead?

On Wed, Jul 11, 2018 at 11:43 AM, muziker notifications@github.com wrote:

My QT5 version is git tag is v5.10.0. The qtwebkit git tag version is v5.5.1 .

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-404109916, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9p-uzOLgPS-fMLAT1vID0OsFL7bLnks5uFcjWgaJpZM4U6yB2 .

muziker commented 6 years ago

It is qtwebkit from the annulen github repo. The tag is v5.5.1. That is the latest from there. QT5 is the official repository and the git tag is v5.10.0. The latest is v5.11.1

muziker commented 6 years ago

I've managed to compile qwebkit for QT5 v5.10.0. git clone the annulen repo of qwebkit. git branch to origin/v5.9.0 . git checkout v5.5.1, and start the qmake process.

GeorgeNs commented 6 years ago

@Muziker May I ask if it worked for you? Qt5webkit is the main reason why I can only compile successfully up to radium 3.8.8 ...( After upgrading to Qt 5.9.6 any attempt to compile qtwebkit failed !.... like this: sub-Tools-qmake-projects-run_cmake-pro-make_first-ordered' failed linux

keeping the old qtwebkit doesn't help at all and becomes really nightmare to compile the latest version just because of that package.

kmatheussen commented 6 years ago

sub-Tools-qmake-projects-run_cmake-pro-make_first-ordered' failed linux

Do you have more output?

keeping the old qtwebkit doesn't help at all and becomes really nightmare to compile the latest version just because of that package.

Using older versions of qtwebkit does in my experience work very well. When I had to compile a custom version of Qt on my laptop when the minimum qt requirement changed to 5.9, I didn't have to do anything to make qtwebkit work, it still uses the old qtwebkit 5.4 package included with the OS. And for the OSX binaries, I think qtwebkit 5.5 is included, although radium is compiled for 5.10.

muziker commented 6 years ago

George: Try the method i had compiling qtwebkit v5.5.1 for Qt5.10. And maybe use the official repository for qtwebkit. The latest qtwebkit version is probably v5.5.1, which supports up till Qt5.10. Actually i haven't gotten around to compiling radium yet. There's really a lot of audio applications out there. Also, i do have separate installations of Qt independant of the distro included ones. One way of managing this,is to use the qtchooser script to select the correct qmake and associated libraries in the qtchooser conf files

GeorgeNs commented 6 years ago

Hello.I use ubuntu 16.04. I have reisntall the old version libqtwebkit-dev and libqt5webkit-dev. I had updated my Qt to 5.9.6 succesfully changing the qtchooser default file to opt/qt5/bin and /opt/qt5/lib it works fine generally. However, I get the following error when i try to compile new versions of radium:

muziker;I have tried to compile all these versions of anullen webkit and also the opensource versions fromm the official website following instructions from linux from scratch (http://www.linuxfromscratch.org/blfs/view/stable/x/qtwebkit5.html) and there is no way. It seems some issues with ICU which i tried to update but nothing happened. I get erros like this: sub-Tools-qmake-projects-run_cmake-pro-make_first-ordered' failed linux or I can post more later if i try to compile webkit again. Thank you muziker and kmatheussen

GeorgeNs commented 6 years ago

I think the problem is that my updated Qt version library for Qt5Gui is in opt/qt5/lib while the old qt5webkit in the old direction is searching the old Qt5Gui in cmake (/usr/lib/x86_64-linux-gnu/cmake)

kmatheussen commented 6 years ago

You haven't tried the program yet? But why do you want to compile manually? Why not just try the demo binaries?

On Tue, Jul 24, 2018 at 10:22 AM, muziker notifications@github.com wrote:

George: Try the method i had compiling qtwebkit v5.5.1 for Qt5.10. And maybe use the official repository for qtwebkit. The latest qtwebkit version is probably v5.5.1, which supports up till Qt5.10. Actually i haven't gotten around to compiling radium yet. There's really a lot of audio applications out there.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407323643, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9pzB0bdnH98JEVOT818pVMcon7zqQks5uJtlOgaJpZM4U6yB2 .

kmatheussen commented 6 years ago

Try this:

export QT5DIR=/opt/qt5/lib

export PKG_CONFIG_PATH=$QT5DIR/lib/pkgconfig export QT_QPA_PLATFORM_PLUGIN_PATH=$QT5DIR/plugins export PATH=$QT5DIR/bin:$PATH export LD_LIBRARY_PATH=$QT5DIR/lib:$LD_LIBRARY_PATH

On Tue, Jul 24, 2018 at 11:55 AM, GeorgeNs notifications@github.com wrote:

I think the problem is that my updated Qt version lib for Qt5Gui is in opt/qt5/lib while the old qt5webkit in the old direction is searching the old Qt5Gui in cmake (/usr/lib/x86_64-linux-gnu/cmake)

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407350232, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9p-YmCOe83GSaCIv7j3UEPgdFyuVcks5uJu8JgaJpZM4U6yB2 .

GeorgeNs commented 6 years ago

Unfortunately that gives other warnings. I compiled it again. I have also attached in the end two screenshots that can make it easier to spot the errors in a colorful way. Thanks.

screenshot from 2018-07-24 19-16-38 screenshot from 2018-07-24 19-17-34

kmatheussen commented 6 years ago

"fatal error: QFloat16: No such file or directory" means that you are using a too old version of Qt. However, this should have been detected by the "check_dependencies" script. I guess you have to put

""" export QT5DIR=/opt/qt5/lib

export PKG_CONFIG_PATH=$QT5DIR/lib/pkgconfig export QT_QPA_PLATFORM_PLUGIN_PATH=$QT5DIR/plugins export PATH=$QT5DIR/bin:$PATH export LD_LIBRARY_PATH=$QT5DIR/lib:$LD_LIBRARY_PATH """

into $HOME/.bashrc

On Tue, Jul 24, 2018 at 1:23 PM, GeorgeNs notifications@github.com wrote:

Unfortunately that gives other warnings. I compiled it again. I have also attached in the end two screenshots that can make it easier to spot the errors in a colorful way. Thanks.

checking for gcc -mfpmath=sse -msse2 option to accept ISO C89... none needed checking for a BSD-compatible install... /usr/bin/install -c checking how to run the C preprocessor... gcc -mfpmath=sse -msse2 -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp:22:1: error: ‘QT_WARNING_DISABLE_DEPRECATED’ does not name a type; did you mean ‘QT_WARNING_DISABLE_INTEL’? QT_WARNING_DISABLE_DEPRECATED ^~~~~~~~~ QT_WARNING_DISABLE_INTEL bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp:32:14: error: ‘qt_meta_stringdata_QHttpConnection_t’ does not name a type static const qt_meta_stringdata_QHttpConnection_t qt_meta_stringdata_QHttpConnection = { ^~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp:127:35: error: ‘qt_meta_stringdata_QHttpConnection’ was not declared in this scope { &QObject::staticMetaObject, qt_meta_stringdata_QHttpConnection.data, ^~~~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp:127:35: note: suggested alternative: ‘qt_meta_data_QHttpConnection’ { &QObject::staticMetaObject, qt_meta_stringdata_QHttpConnection.data, ^~~~~~~~~~ qt_meta_data_QHttpConnection bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp: In member function ‘virtual void QHttpConnection::qt_metacast(const char)’: bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp:140:26: error: ‘qt_meta_stringdata_QHttpConnection’ was not declared in this scope if (!strcmp(_clname, qt_meta_stringdata_QHttpConnection.stringdata0)) ^~~~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp:140:26: note: suggested alternative: ‘qt_meta_data_QHttpConnection’ if (!strcmp(_clname, qt_meta_stringdata_QHttpConnection.stringdata0)) ^~~~~~~~~~ qt_meta_data_QHttpConnection yes checking for memory.h... yes checking for strings.h... bin/packages/qhttpserver- master/build/moc_qhttprequest.cpp:22:1: error: ‘QT_WARNING_DISABLE_DEPRECATED’ does not name a type; did you mean ‘QT_WARNING_DISABLE_INTEL’? QT_WARNING_DISABLE_DEPRECATED ^~~~~~~~~ QT_WARNING_DISABLE_INTEL Makefile:2356: recipe for target 'moc_qhttpconnection.o' failed make: [moc_qhttpconnection.o] Error 1 make: Waiting for unfinished jobs.... bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp:32:14: error: ‘qt_meta_stringdata_QHttpRequest_t’ does not name a type static const qt_meta_stringdata_QHttpRequest_t qt_meta_stringdata_QHttpRequest = { ^~~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp:212:35: error: ‘qt_meta_stringdata_QHttpRequest’ was not declared in this scope { &QObject::staticMetaObject, qt_meta_stringdata_QHttpRequest.data, ^~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp:212:35: note: suggested alternative: ‘qt_meta_data_QHttpRequest’ { &QObject::staticMetaObject, qt_meta_stringdata_QHttpRequest.data, ^~~~~~~ qt_meta_data_QHttpRequest yes bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp: In member function ‘virtual void QHttpRequest::qt_metacast(const char)’: bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp:225:26: error: ‘qt_meta_stringdata_QHttpRequest’ was not declared in this scope if (!strcmp(_clname, qt_meta_stringdata_QHttpRequest.stringdata0)) ^~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp:225:26: note: suggested alternative: ‘qt_meta_data_QHttpRequest’ if (!strcmp(_clname, qt_meta_stringdata_QHttpRequest.stringdata0)) ^~~~~~~ qt_meta_data_QHttpRequest checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking whether byte ordering is bigendian... Makefile:2358: recipe for target 'moc_qhttprequest.o' failed make: *** [moc_qhttprequest.o] Error 1 no checking size of void

... 8 bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:22:1: error: ‘QT_WARNING_DISABLE_DEPRECATED’ does not name a type; did you mean ‘QT_WARNING_DISABLE_INTEL’? QT_WARNING_DISABLE_DEPRECATED ^~~~~~~~~ QT_WARNING_DISABLE_INTEL checking for pkg-config... /usr/bin/pkg-config checking for audio system... None bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:32:14: error: ‘qt_meta_stringdata_QHttpResponse_t’ does not name a type static const qt_meta_stringdata_QHttpResponse_t qt_meta_stringdata_QHttpResponse = { ^~~~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:144:35: error: ‘qt_meta_stringdata_QHttpResponse’ was not declared in this scope { &QObject::staticMetaObject, qt_meta_stringdata_QHttpResponse.data, ^~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:144:35: note: suggested alternative: ‘qt_meta_data_QHttpResponse’ { &QObject::staticMetaObject, qt_meta_stringdata_QHttpResponse.data, ^~~~~~~~ qt_meta_data_QHttpResponse bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp: In member function ‘virtual void QHttpResponse::qt_metacast(const char*)’: bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:157:26: error: ‘qt_meta_stringdata_QHttpResponse’ was not declared in this scope if (!strcmp(_clname, qt_meta_stringdata_QHttpResponse.stringdata0)) ^~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:157:26: note: suggested alternative: ‘qt_meta_data_QHttpResponse’ if (!strcmp(_clname, qt_meta_stringdata_QHttpResponse.stringdata0)) ^~~~~~~~ qt_meta_data_QHttpResponse configure: creating ./config.status config.status: creating makefile Makefile:2360: recipe for target 'moc_qhttpresponse.o' failed make: *** [moc_qhttpresponse.o] Error 1 config.status: creating sndlib.pc config.status: creating sndins/Makefile config.status: creating sndlib-config config.status: creating unix-config.h make[1]: warning: -jN forced in submake: disabling jobserver mode. make[1]: Entering directory '/home/george/radium-master/ bin/packages/sndlib' gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC headers.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC audio.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC io.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC sound.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC xen.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC vct.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC clm.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC sndlib2xen.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC clm2xen.c gcc -mfpmath=sse -msse2 headers.o audio.o io.o sound.o xen.o vct.o clm.o sndlib2xen.o clm2xen.o -o libsndlib.so -shared -lm -ldl ar -rc libsndlib.a headers.o audio.o io.o sound.o xen.o vct.o clm.o sndlib2xen.o clm2xen.o : libsndlib.a make[1]: Leaving directory '/home/george/radium-master/ bin/packages/sndlib' mkdir -p sndlib_objectfiles echo 1 >sndlib_built george@hypersonic:/radium-master$ BUILDTYPE=RELEASE ./build_linux.sh -j7 RADIUM_QT_VERSION=5 BUILDTYPE=RELEASE INCLUDE_FAUSTDEV=jadda INCLUDE_PDDEV=jadda INCLUDE_FAUSTDEV=jadda INCLUDE_PDDEV=jadda Non-linux build detected. Deleting binaries. make: 'buildtype.opt' is up to date. make: 'flagopts.opt' is up to date. cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" instruments_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" midi_instrument_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" plugin_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" patch_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" sample_requester_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" control_change_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" auto_suspend_menu cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" pd_controller_config_dialog cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" jack_plugin_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" faust_plugin_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" compressor_widget g++ -mfpmath=sse -msse2 Qt/Qt_visual.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC gcc -mfpmath=sse -msse2 GTK/GTK_visual.c -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wstrict-prototypes -Wmissing-prototypes -std=gnu99 "/home/george/radium-master/find_moc_and_uic_paths.sh moc" Qt/Qt_Main.cpp

Qt/mQt_Main.cpp gcc -mfpmath=sse -msse2 Qt/Qt_endprogram.c -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wstrict-prototypes -Wmissing-prototypes -std=gnu99 qt4_pd_controller_config_dialog.ui: Warning: Z-order assignment: 'verticalLayoutWidget' is not a valid widget. g++ -mfpmath=sse -msse2 Qt/Qt_EventReceiver.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC "/home/george/radium-master/find_moc_and_uic_paths.sh moc" Qt/Qt_colors.cpp >Qt/mQt_colors.cpp In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ "/home/george/radium-master/find_moc_and_uic_paths.sh moc" Qt/Qt_Menues.cpp >Qt/mQt_Menues.cpp In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ g++ -mfpmath=sse -msse2 Qt/Qt_Fonts.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC g++ -mfpmath=sse -msse2 Qt/Qt_Main.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC pkg-config --cflags sndfile # -Wno-deprecated-declarations -Wno-shadow g++ -mfpmath=sse -msse2 Qt/Qt_ReqType.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC "/home/george/radium-master/find_moc_and_uic_paths.sh moc" Qt/Qt_PopupMenu.cpp -DUSE_QT_MENU >Qt/mQt_PopupMenu.cpp In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ "/home/george/radium-master/find_moc_and_uic_paths.sh moc" Qt/Qt_Bs_edit.cpp >Qt/mQt_Bs_edit.cpp In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qsharedpointer.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qbrush.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qevent.h:44, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ g++ -mfpmath=sse -msse2 Qt/Qt_SliderPainter.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qcoreapplication.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QApplication:1, from Qt/Qt_ReqType.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qcoreapplication.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QApplication:1, from Qt/Qt_ReqType.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ g++ -mfpmath=sse -msse2 Qt/Qt_memory.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qsharedpointer.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qbrush.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qevent.h:44, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qcoreapplication.h:40, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QApplication:1, from Qt/Qt_ReqType.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlocale.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qguiapplication.h:40, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QApplication:1, from Qt/Qt_ReqType.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qsharedpointer.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qbrush.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:42:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlocale.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qguiapplication.h:40, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QApplication:1, from Qt/Qt_ReqType.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlocale.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qguiapplication.h:40, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:45, from Qt/Qt_Fonts.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_ReqType.cpp:23: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_ReqType.cpp:23: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_Fonts.cpp:29: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QKeyEvent:1, from Qt/Qt_ReqType.cpp:26: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qsharedpointer.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qbrush.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qgraphicsitem.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QGraphicsItem:1, from Qt/Qt_SliderPainter.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_SliderPainter.cpp:24: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ g++ -mfpmath=sse -msse2 Qt/Qt_path_resolver.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qdir.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QDir:1, from Qt/Qt_path_resolver.cpp:19: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qdir.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QDir:1, from Qt/Qt_path_resolver.cpp:19: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlibrary.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qpluginloader.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QPluginLoader:1, from Qt/Qt_Main.cpp:38: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlibrary.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qpluginloader.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QPluginLoader:1, from Qt/Qt_Main.cpp:38: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlibrary.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qpluginloader.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QPluginLoader:1, from Qt/Qt_Main.cpp:38: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qsharedpointer.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qpointer.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qplugin.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qpluginloader.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QPluginLoader:1, from Qt/Qt_Main.cpp:38: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlocale.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qguiapplication.h:40, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:45, from Qt/Qt_Main.cpp:43: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qpolygon.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qmatrix.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qtransform.h:36, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qimage.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qsplashscreen.h:37, from Qt/Qt_Main.cpp:44: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qpolygon.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qmatrix.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qtransform.h:36, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qimage.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qsplashscreen.h:37, from Qt/Qt_Main.cpp:44: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qiodevice.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qfiledevice.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qfile.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qfileinfo.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qdir.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QDir:1, from Qt/Qt_path_resolver.cpp:19: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QKeyEvent:1, from Qt/Qt_Main.cpp:51: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qfileinfo.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qdir.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QDir:1, from Qt/Qt_path_resolver.cpp:19: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qmessagebox.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QMessageBox:1, from Qt/Qt_path_resolver.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qmessagebox.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QMessageBox:1, from Qt/Qt_path_resolver.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/qt5/QtCore/QMap:1:0, from Qt/../common/nsmtracker.h:139, from Qt/Qt_path_resolver.cpp:24: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from Qt/Qt_Main.cpp:132:0: Qt/../audio/Peaks.hpp:26:10: fatal error: QFloat16: No such file or directory

include

^ compilation terminated. In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_path_resolver.cpp:31: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ Makefile:1254: recipe for target 'Qt_Main.o' failed make: [Qt_Main.o] Error 1 make: Waiting for unfinished jobs....

[image: screenshot from 2018-07-24 19-16-38] https://user-images.githubusercontent.com/19171138/43135093-cdf9d09a-8f76-11e8-8040-73ee39354a46.png [image: screenshot from 2018-07-24 19-17-34] https://user-images.githubusercontent.com/19171138/43135092-cb9ab170-8f76-11e8-93dd-4d1fbeb1ad37.png

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407371791, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9p8zqysZtatQktVlvAbL1FBESZhJoks5uJwOigaJpZM4U6yB2 .

kmatheussen commented 6 years ago

And after editing $HOME/.bashrc, start a new shell.

On Tue, Jul 24, 2018 at 1:31 PM, Kjetil Matheussen <k.s.matheussen@gmail.com

wrote:

"fatal error: QFloat16: No such file or directory" means that you are using a too old version of Qt. However, this should have been detected by the "check_dependencies" script. I guess you have to put

""" export QT5DIR=/opt/qt5/lib

export PKG_CONFIG_PATH=$QT5DIR/lib/pkgconfig export QT_QPA_PLATFORM_PLUGIN_PATH=$QT5DIR/plugins export PATH=$QT5DIR/bin:$PATH export LD_LIBRARY_PATH=$QT5DIR/lib:$LD_LIBRARY_PATH """

into $HOME/.bashrc

On Tue, Jul 24, 2018 at 1:23 PM, GeorgeNs notifications@github.com wrote:

Unfortunately that gives other warnings. I compiled it again. I have also attached in the end two screenshots that can make it easier to spot the errors in a colorful way. Thanks.

checking for gcc -mfpmath=sse -msse2 option to accept ISO C89... none needed checking for a BSD-compatible install... /usr/bin/install -c checking how to run the C preprocessor... gcc -mfpmath=sse -msse2 -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... bin/packages/qhttpserver-maste r/build/moc_qhttpconnection.cpp:22:1: error: ‘QT_WARNING_DISABLE_DEPRECATED’ does not name a type; did you mean ‘QT_WARNING_DISABLE_INTEL’? QT_WARNING_DISABLE_DEPRECATED ^~~~~~~~~ QT_WARNING_DISABLE_INTEL bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp:32:14: error: ‘qt_meta_stringdata_QHttpConnection_t’ does not name a type static const qt_meta_stringdata_QHttpConnection_t qt_meta_stringdata_QHttpConnection = { ^~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp:127:35: error: ‘qt_meta_stringdata_QHttpConnection’ was not declared in this scope { &QObject::staticMetaObject, qt_meta_stringdata_QHttpConnection.data, ^~~~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp:127:35: note: suggested alternative: ‘qt_meta_data_QHttpConnection’ { &QObject::staticMetaObject, qt_meta_stringdata_QHttpConnection.data, ^~~~~~~~~~ qt_meta_data_QHttpConnection bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp: In member function ‘virtual void QHttpConnection::qt_metacast(const char)’: bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp:140:26: error: ‘qt_meta_stringdata_QHttpConnection’ was not declared in this scope if (!strcmp(_clname, qt_meta_stringdata_QHttpConnection.stringdata0)) ^~~~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpconnection.cpp:140:26: note: suggested alternative: ‘qt_meta_data_QHttpConnection’ if (!strcmp(_clname, qt_meta_stringdata_QHttpConnection.stringdata0)) ^~~~~~~~~~ qt_meta_data_QHttpConnection yes checking for memory.h... yes checking for strings.h... bin/packages/qhttpserver-maste r/build/moc_qhttprequest.cpp:22:1: error: ‘QT_WARNING_DISABLE_DEPRECATED’ does not name a type; did you mean ‘QT_WARNING_DISABLE_INTEL’? QT_WARNING_DISABLE_DEPRECATED ^~~~~~~~~ QT_WARNING_DISABLE_INTEL Makefile:2356: recipe for target 'moc_qhttpconnection.o' failed make: [moc_qhttpconnection.o] Error 1 make: Waiting for unfinished jobs.... bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp:32:14: error: ‘qt_meta_stringdata_QHttpRequest_t’ does not name a type static const qt_meta_stringdata_QHttpRequest_t qt_meta_stringdata_QHttpRequest = { ^~~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp:212:35: error: ‘qt_meta_stringdata_QHttpRequest’ was not declared in this scope { &QObject::staticMetaObject, qt_meta_stringdata_QHttpRequest.data, ^~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp:212:35: note: suggested alternative: ‘qt_meta_data_QHttpRequest’ { &QObject::staticMetaObject, qt_meta_stringdata_QHttpRequest.data, ^~~~~~~ qt_meta_data_QHttpRequest yes bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp: In member function ‘virtual void QHttpRequest::qt_metacast(const char)’: bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp:225:26: error: ‘qt_meta_stringdata_QHttpRequest’ was not declared in this scope if (!strcmp(_clname, qt_meta_stringdata_QHttpRequest.stringdata0)) ^~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttprequest.cpp:225:26: note: suggested alternative: ‘qt_meta_data_QHttpRequest’ if (!strcmp(_clname, qt_meta_stringdata_QHttpRequest.stringdata0)) ^~~~~~~ qt_meta_data_QHttpRequest checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking whether byte ordering is bigendian... Makefile:2358: recipe for target 'moc_qhttprequest.o' failed make: *** [moc_qhttprequest.o] Error 1 no checking size of void

... 8 bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:22:1: error: ‘QT_WARNING_DISABLE_DEPRECATED’ does not name a type; did you mean ‘QT_WARNING_DISABLE_INTEL’? QT_WARNING_DISABLE_DEPRECATED ^~~~~~~~~ QT_WARNING_DISABLE_INTEL checking for pkg-config... /usr/bin/pkg-config checking for audio system... None bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:32:14: error: ‘qt_meta_stringdata_QHttpResponse_t’ does not name a type static const qt_meta_stringdata_QHttpResponse_t qt_meta_stringdata_QHttpResponse = { ^~~~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:144:35: error: ‘qt_meta_stringdata_QHttpResponse’ was not declared in this scope { &QObject::staticMetaObject, qt_meta_stringdata_QHttpResponse.data, ^~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:144:35: note: suggested alternative: ‘qt_meta_data_QHttpResponse’ { &QObject::staticMetaObject, qt_meta_stringdata_QHttpResponse.data, ^~~~~~~~ qt_meta_data_QHttpResponse bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp: In member function ‘virtual void QHttpResponse::qt_metacast(const char*)’: bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:157:26: error: ‘qt_meta_stringdata_QHttpResponse’ was not declared in this scope if (!strcmp(_clname, qt_meta_stringdata_QHttpResponse.stringdata0)) ^~~~~~~~ bin/packages/qhttpserver-master/build/moc_qhttpresponse.cpp:157:26: note: suggested alternative: ‘qt_meta_data_QHttpResponse’ if (!strcmp(_clname, qt_meta_stringdata_QHttpResponse.stringdata0)) ^~~~~~~~ qt_meta_data_QHttpResponse configure: creating ./config.status config.status: creating makefile Makefile:2360: recipe for target 'moc_qhttpresponse.o' failed make: *** [moc_qhttpresponse.o] Error 1 config.status: creating sndlib.pc config.status: creating sndins/Makefile config.status: creating sndlib-config config.status: creating unix-config.h make[1]: warning: -jN forced in submake: disabling jobserver mode. make[1]: Entering directory '/home/george/radium-master/bi n/packages/sndlib' gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC headers.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC audio.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC io.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC sound.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC xen.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC vct.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC clm.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC sndlib2xen.c gcc -mfpmath=sse -msse2 -c -DHAVE_CONFIG_H -I. -g -fPIC clm2xen.c gcc -mfpmath=sse -msse2 headers.o audio.o io.o sound.o xen.o vct.o clm.o sndlib2xen.o clm2xen.o -o libsndlib.so -shared -lm -ldl ar -rc libsndlib.a headers.o audio.o io.o sound.o xen.o vct.o clm.o sndlib2xen.o clm2xen.o : libsndlib.a make[1]: Leaving directory '/home/george/radium-master/bi n/packages/sndlib' mkdir -p sndlib_objectfiles echo 1 >sndlib_built george@hypersonic:/radium-master$ BUILDTYPE=RELEASE ./build_linux.sh -j7 RADIUM_QT_VERSION=5 BUILDTYPE=RELEASE INCLUDE_FAUSTDEV=jadda INCLUDE_PDDEV=jadda INCLUDE_FAUSTDEV=jadda INCLUDE_PDDEV=jadda Non-linux build detected. Deleting binaries. make: 'buildtype.opt' is up to date. make: 'flagopts.opt' is up to date. cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" instruments_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" midi_instrument_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" plugin_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" patch_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" sample_requester_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" control_change_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" auto_suspend_menu cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" pd_controller_config_dialog cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" jack_plugin_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" faust_plugin_widget cd Qt/ && ./create_source_from_ui.sh "/home/george/radium-master/find_moc_and_uic_paths.sh uic" "/home/george/radium-master/find_moc_and_uic_paths.sh moc" compressor_widget g++ -mfpmath=sse -msse2 Qt/Qt_visual.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC gcc -mfpmath=sse -msse2 GTK/GTK_visual.c -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wstrict-prototypes -Wmissing-prototypes -std=gnu99 "/home/george/radium-master/find_moc_and_uic_paths.sh moc" Qt/Qt_Main.cpp > Qt/mQt_Main.cpp gcc -mfpmath=sse -msse2 Qt/Qt_endprogram.c -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wstrict-prototypes -Wmissing-prototypes -std=gnu99 qt4_pd_controller_config_dialog.ui: Warning: Z-order assignment: 'verticalLayoutWidget' is not a valid widget. g++ -mfpmath=sse -msse2 Qt/Qt_EventReceiver.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC "/home/george/radium-master/find_moc_and_uic_paths.sh moc" Qt/Qt_colors.cpp >Qt/mQt_colors.cpp In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ "/home/george/radium-master/find_moc_and_uic_paths.sh moc" Qt/Qt_Menues.cpp >Qt/mQt_Menues.cpp In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ g++ -mfpmath=sse -msse2 Qt/Qt_Fonts.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC g++ -mfpmath=sse -msse2 Qt/Qt_Main.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC pkg-config --cflags sndfile # -Wno-deprecated-declarations -Wno-shadow g++ -mfpmath=sse -msse2 Qt/Qt_ReqType.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC "/home/george/radium-master/find_moc_and_uic_paths.sh moc" Qt/Qt_PopupMenu.cpp -DUSE_QT_MENU >Qt/mQt_PopupMenu.cpp In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ "/home/george/radium-master/find_moc_and_uic_paths.sh moc" Qt/Qt_Bs_edit.cpp >Qt/mQt_Bs_edit.cpp In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qsharedpointer.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qbrush.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qevent.h:44, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_visual.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ g++ -mfpmath=sse -msse2 Qt/Qt_SliderPainter.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qcoreapplication.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QApplication:1, from Qt/Qt_ReqType.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qcoreapplication.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QApplication:1, from Qt/Qt_ReqType.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ g++ -mfpmath=sse -msse2 Qt/Qt_memory.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qsharedpointer.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qbrush.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/EditorWidget.h:39, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qevent.h:44, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_EventReceiver.cpp:18: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qcoreapplication.h:40, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QApplication:1, from Qt/Qt_ReqType.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlocale.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qguiapplication.h:40, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QApplication:1, from Qt/Qt_ReqType.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qsharedpointer.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qbrush.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qfontdialog.h:38, from Qt/Qt_Fonts.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:42:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlocale.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qguiapplication.h:40, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QApplication:1, from Qt/Qt_ReqType.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlocale.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qguiapplication.h:40, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:45, from Qt/Qt_Fonts.cpp:22: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_ReqType.cpp:23: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_ReqType.cpp:23: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_Fonts.cpp:29: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QKeyEvent:1, from Qt/Qt_ReqType.cpp:26: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qsharedpointer.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qbrush.h:45, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1, from Qt/Qt_SliderPainter.cpp:20: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qgraphicsitem.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QGraphicsItem:1, from Qt/Qt_SliderPainter.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_SliderPainter.cpp:24: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ g++ -mfpmath=sse -msse2 Qt/Qt_path_resolver.cpp -c cat buildtype.opt -Ibin/packages/gc-7.4.4/include -IQt/ -I/usr/include/python2.7 cat flagopts.opt -Werror=array-bounds -msse2 -fomit-frame-pointer -DFOR_LINUX -I/usr/include/x86_64-linux-gnu/qt5/QtX11Extras -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/x86_64-linux-gnu/qt5 -DWITH_FAUST_DEV -DWITH_PD -DUSE_VESTIGE=0 -I/home/george/boost_1_63_0 -I/home/george/boost_1_67_0 -I /SDKs/VST_SDK/VST2_SDK/ -I /SDKs/VST3\ SDK -I /SDKs/vstsdk2.4/ -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing -Wmissing-field-initializers -DUSE_QT5 -Wmissing-declarations -DNDEBUG -std=gnu++11 -DUSE_QT4 -DUSE_QIMAGE_BUFFER=1 pkg-config --cflags Qt5Gui --cflags Qt5Network --cflags Qt5OpenGL --cflags Qt5Widgets --cflags Qt5WebKitWidgets -Ibin/packages/qhttpserver-master/src -Ibin/packages/QScintilla_gpl-2.10.1/Qt4Qt5 -DQHTTPSERVER_EXPORT -fPIC In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qdir.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QDir:1, from Qt/Qt_path_resolver.cpp:19: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qdir.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QDir:1, from Qt/Qt_path_resolver.cpp:19: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlibrary.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qpluginloader.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QPluginLoader:1, from Qt/Qt_Main.cpp:38: /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:50:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:61:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:70:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qbytearray.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qobject.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlibrary.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qpluginloader.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QPluginLoader:1, from Qt/Qt_Main.cpp:38: /usr/include/x86_64-linux-gnu/qt5/QtCore/qarraydata.h:75:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlibrary.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qpluginloader.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QPluginLoader:1, from Qt/Qt_Main.cpp:38: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qsharedpointer.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qpointer.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qplugin.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qpluginloader.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QPluginLoader:1, from Qt/Qt_Main.cpp:38: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qvariant.h:41:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qlocale.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qguiapplication.h:40, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qapplication.h:45, from Qt/Qt_Main.cpp:43: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qpolygon.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qmatrix.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qtransform.h:36, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qimage.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qsplashscreen.h:37, from Qt/Qt_Main.cpp:44: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qpolygon.h:37:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qmatrix.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qtransform.h:36, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qimage.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpixmap.h:42, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qsplashscreen.h:37, from Qt/Qt_Main.cpp:44: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qobject.h:43:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qiodevice.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qfiledevice.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qfile.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qfileinfo.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qdir.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QDir:1, from Qt/Qt_path_resolver.cpp:19: /usr/include/x86_64-linux-gnu/qt5/QtCore/qlist.h:169:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QKeyEvent:1, from Qt/Qt_Main.cpp:51: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtCore/qshareddata.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qfileinfo.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtCore/qdir.h:38, from /usr/include/x86_64-linux-gnu/qt5/QtCore/QDir:1, from Qt/Qt_path_resolver.cpp:19: /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:365:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qmessagebox.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QMessageBox:1, from Qt/Qt_path_resolver.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:102:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qbrush.h:39:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/qpalette.h:39, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:41, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qdialog.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qmessagebox.h:37, from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QMessageBox:1, from Qt/Qt_path_resolver.cpp:21: /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:350:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:510:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ /usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:578:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from /usr/include/x86_64-linux-gnu/qt5/QtCore/QMap:1:0, from Qt/../common/nsmtracker.h:139, from Qt/Qt_path_resolver.cpp:24: /usr/include/x86_64-linux-gnu/qt5/QtCore/qmap.h:366:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ In file included from Qt/Qt_Main.cpp:132:0: Qt/../audio/Peaks.hpp:26:10: fatal error: QFloat16: No such file or directory

include

^ compilation terminated. In file included from /usr/include/x86_64-linux-gnu/ qt5/QtGui/qevent.h:47:0, from /usr/include/x86_64-linux-gnu/qt5/QtGui/QWheelEvent:1, from Qt/EditorWidget.h:45, from Qt/Qt_path_resolver.cpp:31: /usr/include/x86_64-linux-gnu/qt5/QtCore/qset.h:86:1: warning: this use of "defined" may not be portable [-Wexpansion-to-defined]

if QT_SUPPORTS(UNSHARABLE_CONTAINERS)

^~~~~~~ Makefile:1254: recipe for target 'Qt_Main.o' failed make: [Qt_Main.o] Error 1 make: Waiting for unfinished jobs....

[image: screenshot from 2018-07-24 19-16-38] https://user-images.githubusercontent.com/19171138/43135093-cdf9d09a-8f76-11e8-8040-73ee39354a46.png [image: screenshot from 2018-07-24 19-17-34] https://user-images.githubusercontent.com/19171138/43135092-cb9ab170-8f76-11e8-93dd-4d1fbeb1ad37.png

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407371791, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9p8zqysZtatQktVlvAbL1FBESZhJoks5uJwOigaJpZM4U6yB2 .

GeorgeNs commented 6 years ago

I tried again,putting the exports to .bashrc,i even restarted my computer after that, stops building as can be seen in the image (

screenshot from 2018-07-24 19-54-30

GeorgeNs commented 6 years ago

It shouldn't use old qt version, i have added in /etc/ld.so.conf the following path /opt/qt5/lib and created a .sh file in /etc/profile.d/qt5.sh f with these inside(instructions from linux from scratch): QT5DIR=/opt/qt5

pathappend $QT5DIR/bin PATH pathappend $QT5DIR/lib/pkgconfig PKG_CONFIG_PATH

export QT5DIR

also qmake -v gives: QMake version 3.1 Using Qt version 5.9.6 in /opt/qt5/lib

kmatheussen commented 6 years ago

I guess at least one of moc-qt5/moc-qt5/qmake-qt5 points to the wrong place.

On Tue, Jul 24, 2018 at 2:07 PM, GeorgeNs notifications@github.com wrote:

It shouldn't use old qt version, i have added in /etc/ld.so.conf the following path /opt/qt5/lib and created a .sh file in /etc/profile.d/qt5.sh f with these inside(instructions from linux from scratch): QT5DIR=/opt/qt5

pathappend $QT5DIR/bin PATH pathappend $QT5DIR/lib/pkgconfig PKG_CONFIG_PATH

export QT5DIR

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407383118, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9p_HLtxGq9MJmF4ejecEbhuPtzXBVks5uJw4TgaJpZM4U6yB2 .

GeorgeNs commented 6 years ago

I am searching about. Strange I have already link them,moc qmake uic etc. from my opt/qt5 to my usr/bin/moc-qt5 qmake-qt5 uic-qt5 etc.

I have already build many other things with that qt version such as qjackctl, qsampler, qtractor cadence!

kmatheussen commented 6 years ago

Seems like the script uses moc/qmake/uic first if they are from Qt5. I guess at least one of moc/uic/qmake points to the wrong place then. If that is the case, the problem should be fixed by removing line 3-17 in find_moc_and_uic_paths.sh

On Tue, Jul 24, 2018 at 3:00 PM, GeorgeNs notifications@github.com wrote:

I will search about. Strange I have already link them,moc qmake uic etc. from my opt/qt5 to my usr/bin/moc-qt5 qmake-qt5 uic-qt5 etc.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407397933, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9p0aCpCKDUdy6ebSwyt2SQs4n6-HKks5uJxp6gaJpZM4U6yB2 .

GeorgeNs commented 6 years ago

Sorry, it still gives the same output with same errors. I tried to remove the 3 to 17 lines,then i compiled one time with the exports and one time without the exports you suggested before. The errors are the same respectively.

kmatheussen commented 6 years ago

Did you do a make clean first? From the error, it seems like a too old version of moc is used.

On Tue, Jul 24, 2018 at 5:19 PM, GeorgeNs notifications@github.com wrote:

Sorry, still gives the same output with same errors. I tried to remove the 3 to 17 lines one time with the exports and one time without the exports you suggested before. The errors are the same.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407445319, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9pweHFrqjQ5-_gKvLBoyia5mRKa8Rks5uJzsXgaJpZM4U6yB2 .

kmatheussen commented 6 years ago

You actually have to do "make very_clean" first. But this probably also works, to avoid having to compile up all packages again:

cd bin/packages rm -fr qhttpserver-master tar xvzf qhttpserver-master.tar.gz cd qhttpserver-master/ echo "CONFIG += staticlib" >> src/src.pro ../../../find_moc_and_uic_paths.sh qmake make -j3 # necessary to create the moc files. cd ..

On Tue, Jul 24, 2018 at 5:23 PM, Kjetil Matheussen <k.s.matheussen@gmail.com

wrote:

Did you do a make clean first? From the error, it seems like a too old version of moc is used.

On Tue, Jul 24, 2018 at 5:19 PM, GeorgeNs notifications@github.com wrote:

Sorry, still gives the same output with same errors. I tried to remove the 3 to 17 lines one time with the exports and one time without the exports you suggested before. The errors are the same.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407445319, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9pweHFrqjQ5-_gKvLBoyia5mRKa8Rks5uJzsXgaJpZM4U6yB2 .

muziker commented 6 years ago

Hi there george, in a post somewhere, i wrote that you had to change the github head to origin/v5.9.0. and checking out the tag v5.1.1. So what happens with Qt is, you can change the config files for qtchooser. The qmake is symlinked to qtchooser. And once you've done that qmake --version will give you the correct version. Makefiles should be using qmake to generate the library options. But also i've added my new Qt 5 install bin to the front of the path just in case. I also added the new Qt 5 install lib/pkgconfig to the PKG_CONFIG_PATH environment variable as well. With that, I could compile qtwebkit.

I had a problem when doing "make packages" for faust2. So i trimmed the last parts of the radium/bin/packages/build.sh to build seperately and built faust2 seperately.

I also changed the radium/Qt/Qt_Main.cpp BOOST_VERSION check from <63 to <62 to get radium to build

Now I've got this set of errors that appear: ` cd audio/faust-examples/faust-stk && /home/radium/bin/packages/faust2/compiler/faust -I /home/radium/bin/packages/ faust2/architecture -cn Blow_Hole_dsp -a ../../Faust_plugins_template.cpp blowHole.dsp -o ../../stk_blow_hole.cpp In file included from Qt/mQt_vst_paths_widget_callbacks.h:9:0, from Qt/Qt_preferences_callbacks.cpp:50: Qt/Qt_vst_paths_widget_callbacks.h:32:69: error: expected class-name before ‘{’ token class Vst_paths_widget : public QWidget, public Ui::Vst_paths_widget{ ^ Qt/Qt_vst_paths_widget_callbacks.h: In constructor ‘{anonymous}::Vst_paths_widget::Vst_paths_widget(QWidget*)’: Qt/Qt_vst_paths_widget_callbacks.h:43:17: error: ‘setupUi’ was not declared in this scope setupUi(this); ^ Qt/Qt_vst_paths_widget_callbacks.h:45:5: error: ‘rescan_button’ was not declared in this scope rescan_button->hide(); // we rescan when pressing "add". ^~~~~ Qt/Qt_vst_paths_widget_callbacks.h: In member function ‘void {anonymous}::Vst_paths_widget::updateWidgets()’: Qt/Qt_vst_paths_widget_callbacks.h:84:5: error: ‘always_on_top’ was not declared in this scope always_on_top->setChecked(vstGuiIsAlwaysOnTop()); ^~~~~ Qt/Qt_vst_paths_widget_callbacks.h:86:5: error: ‘show_instrument_widget_when_double_clicking’ was not declared in this scope show_instrument_widget_when_double_clicking->setChecked(showInstrumentWidgetWhenDoubleClickingSoundObject()); ^~~~~~~~~~~ Qt/Qt_vst_paths_widget_callbacks.h:89:5: error: ‘lock_juce_when_swapping_onoff’ was not declared in this scope lock_juce_when_swapping_onoff->setChecked(lock_juce);

` I suspect it is a problem with some settings of pkgconfig set automatically somewhere.

GeorgeNs commented 6 years ago

Thank you guys, I will try again as soon as possible and give feedback. I am eager to try compiling again

GeorgeNs commented 6 years ago

No way to compile qtwebkit. I get these errors: make[2]: Leaving directory '/home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/JavaScriptCore' Makefile.JavaScriptCore:100: recipe for target 'sub-Target-pri-make_first-ordered' failed make[1]: [sub-Target-pri-make_first-ordered] Error 2 make[1]: Leaving directory '/home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/JavaScriptCore' Makefile:95: recipe for target 'sub-Source-JavaScriptCore-JavaScriptCore-pro-make_first-ordered' failed make: [sub-Source-JavaScriptCore-JavaScriptCore-pro-make_first-ordered] Error 2

or this without patch applied(from linux from scratch)

Base64.cpp:(.text+0x149b): undefined reference to u_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::StringImpl::stripWhiteSpace()': StringImpl.cpp:(.text+0x935): undefined reference to u_charDirection_55' StringImpl.cpp:(.text+0x975): undefined reference tou_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In function WTF::equalIgnoringCase(unsigned char const*, unsigned char const*, unsigned int)': StringImpl.cpp:(.text+0xe05): undefined reference tou_foldCase_55' StringImpl.cpp:(.text+0xe13): undefined reference to u_foldCase_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::equalIgnoringCase(unsigned short const, unsigned char const, unsigned int)': StringImpl.cpp:(.text+0xe75): undefined reference to u_foldCase_55' StringImpl.cpp:(.text+0xe83): undefined reference tou_foldCase_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In function WTF::StringImpl::findIgnoringCase(WTF::StringImpl*, unsigned int)': StringImpl.cpp:(.text+0x386d): undefined reference tou_memcasecmp_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In function WTF::StringImpl::reverseFindIgnoringCase(WTF::StringImpl*, unsigned int)': StringImpl.cpp:(.text+0x3fab): undefined reference tou_memcasecmp_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In function WTF::equalIgnoringCase(WTF::StringImpl const*, unsigned char const*)': StringImpl.cpp:(.text+0x5dbb): undefined reference tou_foldCase_55' StringImpl.cpp:(.text+0x5dca): undefined reference to u_foldCase_55' StringImpl.cpp:(.text+0x5e94): undefined reference tou_foldCase_55' StringImpl.cpp:(.text+0x5ea3): undefined reference to u_foldCase_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::equalIgnoringCaseNonNull(WTF::StringImpl const, WTF::StringImpl const)': StringImpl.cpp:(.text+0x5fb1): undefined reference to u_memcasecmp_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::StringImpl::defaultWritingDirection(bool)': StringImpl.cpp:(.text+0x607d): undefined reference to u_charDirection_55' StringImpl.cpp:(.text+0x60a8): undefined reference tou_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In function WTF::StringImpl::simplifyWhiteSpace()': StringImpl.cpp:(.text+0x657a): undefined reference tou_charDirection_55' StringImpl.cpp:(.text+0x65bf): undefined reference to u_charDirection_55' StringImpl.cpp:(.text+0x672d): undefined reference tou_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o:StringImpl.cpp:(.text+0x676a): more undefined references to u_charDirection_55' follow /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::StringImpl::lower()': StringImpl.cpp:(.text+0x7375): undefined reference to u_strToLower_55' StringImpl.cpp:(.text+0x73fb): undefined reference tou_strToLower_55' StringImpl.cpp:(.text+0x74b3): undefined reference to u_tolower_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::StringImpl::foldCase()': StringImpl.cpp:(.text+0x7602): undefined reference to u_tolower_55' StringImpl.cpp:(.text+0x76f2): undefined reference tou_strFoldCase_55' StringImpl.cpp:(.text+0x776e): undefined reference to u_strFoldCase_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::StringImpl::upper()': StringImpl.cpp:(.text+0x7982): undefined reference to u_strToUpper_55' StringImpl.cpp:(.text+0x7a14): undefined reference tou_strToUpper_55' StringImpl.cpp:(.text+0x7af9): undefined reference to u_toupper_55' StringImpl.cpp:(.text+0x7cd7): undefined reference tou_toupper_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/WTFString.o: In function `WTF::charactersToIntStrict(unsigned char const, unsigned long, bool, int)': WTFString.cpp:(.text+0x40c9): undefined reference to u_charDirection_55' WTFString.cpp:(.text+0x4299): undefined reference tou_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/WTFString.o: In function `WTF::charactersToIntStrict(unsigned short const, unsigned long, bool, int)': WTFString.cpp:(.text+0x43d9): undefined reference to u_charDirection_55' WTFString.cpp:(.text+0x454a): undefined reference tou_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/WTFString.o: In function `WTF::charactersToUIntStrict(unsigned char const, unsigned long, bool, int)': WTFString.cpp:(.text+0x4781): undefined reference to u_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/text/WTFString.o:WTFString.cpp:(.text+0x4911): more undefined references tou_charDirection_55' follow /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/unicode/icu/CollatorICU.o: In function WTF::Collator::~Collator()': CollatorICU.cpp:(.text+0x9a): undefined reference toucol_close_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/unicode/icu/CollatorICU.o: In function WTF::Collator::createCollator() const': CollatorICU.cpp:(.text+0x189): undefined reference toucol_getLocaleByType_55' CollatorICU.cpp:(.text+0x1a0): undefined reference to ucol_getAttribute_55' CollatorICU.cpp:(.text+0x1f0): undefined reference toucol_open_55' CollatorICU.cpp:(.text+0x217): undefined reference to ucol_setAttribute_55' CollatorICU.cpp:(.text+0x22c): undefined reference toucol_setAttribute_55' CollatorICU.cpp:(.text+0x26b): undefined reference to ucol_open_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/unicode/icu/CollatorICU.o: In functionWTF::Collator::releaseCollator()': CollatorICU.cpp:(.text+0x39a): undefined reference to ucol_close_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/WTF//.obj/wtf/unicode/icu/CollatorICU.o: In functionWTF::Collator::collate(unsigned short const, unsigned long, unsigned short const*, unsigned long) const': CollatorICU.cpp:(.text+0x316): undefined reference to ucol_strcoll_55' CollatorICU.cpp:(.text+0x357): undefined reference toucol_strcoll_55' collect2: error: ld returned 1 exit status Makefile.jsc:82: recipe for target '../../bin/jsc' failed make[2]: [../../bin/jsc] Error 1 make[2]: Leaving directory '/home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/JavaScriptCore' Makefile.JavaScriptCore:128: recipe for target 'sub-jsc-pro-make_first-ordered' failed make[1]: [sub-jsc-pro-make_first-ordered] Error 2 make[1]: Leaving directory '/home/george/Downloads/qtwebkit-opensource-src-5.9.0/build/Source/JavaScriptCore' Makefile:95: recipe for target 'sub-Source-JavaScriptCore-JavaScriptCore-pro-make_first-ordered' failed make: *** [sub-Source-JavaScriptCore-JavaScriptCore-pro-make_first-ordered] Error 2

GeorgeNs commented 6 years ago

I always do a clean installation using make packages every time in a fresh folder but no luck so far ((

Sticking with the first errors about libqt5webkit undefined references to QWindowSystemInterface...I am wondering if I can somehow add a Qt += Qt5WebkitWidgets or Libs += ...bla bla bla to any makefile or .pro file, don't know..

muziker commented 6 years ago

Right now, there are 3 separate points:

  1. install of qtwebkit
  2. install of packages: using make packages
  3. make radium

For 1. you should try out all default recommended steps as set in the readme. I wouldn't try to install from linux from scratch, because the environment might not have all the supporting libraries. So everything standard install - ubuntu, debian, fedora ,etc . And make very_clean. I presume the pushes into github from a developer checkin can contain half made object files etc. I noticed in the log you've provided a large number of unresolved symbols that should be pointing to the correct ones. I strongly suggest you rebuild on a different platform. I tried using the qtwebkit-opensource-src-5.9.0 and had the same issues I had as the github version but then i changed the branch of the github version and it worked.

For 2. I found i had to cut the faust2 part from radium/bin/packages/build.sh to build faust2. The environment variables were being changed in the script and hence no compile on faust2.

For 3. After 1&2, I changed the Qt/Qt_Main.cpp to stop the BOOST_VERSION check that was checking for 1.63 and up, but saying 1.58++ was needed. Now, i'm getting: Qt/Qt_vst_paths_widget_callbacks.h:32:69: error: expected class-name before ‘{’ token

So yes i'd say there has been some progress

kmatheussen commented 6 years ago

But why do you need to compile qtwebkit, doesn't the OS provide a qtwebkit package?

On Wed, Jul 25, 2018 at 12:45 AM, GeorgeNs notifications@github.com wrote:

No way to compile qtwebkit. I get these errors: make[2]: Leaving directory '/home/george/Downloads/ qtwebkit-opensource-src-5.9.0/build/Source/JavaScriptCore' Makefile.JavaScriptCore💯 recipe for target 'sub-Target-pri-make_first-ordered' failed make[1]: [sub-Target-pri-make_first-ordered] Error 2 make[1]: Leaving directory '/home/george/Downloads/ qtwebkit-opensource-src-5.9.0/build/Source/JavaScriptCore' Makefile:95: recipe for target 'sub-Source-JavaScriptCore- JavaScriptCore-pro-make_first-ordered' failed make: [sub-Source-JavaScriptCore-JavaScriptCore-pro-make_first-ordered] Error 2

or this without patch applied(from linux from scratch)

Base64.cpp:(.text+0x149b): undefined reference to u_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::StringImpl:: stripWhiteSpace()': StringImpl.cpp:(.text+0x935): undefined reference to u_charDirection_55' StringImpl.cpp:(.text+0x975): undefined reference tou_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In function WTF::equalIgnoringCase(unsigned char const, unsigned char const, unsigned int)': StringImpl.cpp:(.text+0xe05): undefined reference to u_foldCase_55' StringImpl.cpp:(.text+0xe13): undefined reference to u_foldCase_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::equalIgnoringCase(unsigned short const, unsigned char const, unsigned int)': StringImpl.cpp:(.text+0xe75): undefined reference to u_foldCase_55' StringImpl.cpp:(.text+0xe83): undefined reference tou_foldCase_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In function WTF::StringImpl::findIgnoringCase(WTF::StringImpl, unsigned int)': StringImpl.cpp:(.text+0x386d): undefined reference tou_memcasecmp_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In function WTF::StringImpl::reverseFindIgnoringCase(WTF::StringImpl, unsigned int)': StringImpl.cpp:(.text+0x3fab): undefined reference to u_memcasecmp_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In function WTF::equalIgnoringCase(WTF::StringImpl const, unsigned char const)': StringImpl.cpp:(.text+0x5dbb): undefined reference tou_foldCase_55' StringImpl.cpp:(.text+0x5dca): undefined reference to u_foldCase_55' StringImpl.cpp:(.text+0x5e94): undefined reference tou_foldCase_55' StringImpl.cpp:(.text+0x5ea3): undefined reference to u_foldCase_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF:: equalIgnoringCaseNonNull(WTF::StringImpl const, WTF::StringImpl const)': StringImpl.cpp:(.text+0x5fb1): undefined reference to u_memcasecmp_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::StringImpl:: defaultWritingDirection(bool)': StringImpl.cpp:(.text+0x607d): undefined reference to u_charDirection_55' StringImpl.cpp:(.text+0x60a8): undefined reference tou_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In function WTF::StringImpl::simplifyWhiteSpace()': StringImpl.cpp:(.text+0x657a): undefined reference tou_charDirection_55' StringImpl.cpp:(.text+0x65bf): undefined reference to u_charDirection_55' StringImpl.cpp:(.text+0x672d): undefined reference tou_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o:StringImpl.cpp:(.text+0x676a): more undefined references to u_charDirection_55' follow /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::StringImpl:: lower()': StringImpl.cpp:(.text+0x7375): undefined reference to u_strToLower_55' StringImpl.cpp:(.text+0x73fb): undefined reference tou_strToLower_55' StringImpl.cpp:(.text+0x74b3): undefined reference to u_tolower_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::StringImpl:: foldCase()': StringImpl.cpp:(.text+0x7602): undefined reference to u_tolower_55' StringImpl.cpp:(.text+0x76f2): undefined reference tou_strFoldCase_55' StringImpl.cpp:(.text+0x776e): undefined reference to u_strFoldCase_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/StringImpl.o: In functionWTF::StringImpl:: upper()': StringImpl.cpp:(.text+0x7982): undefined reference to u_strToUpper_55' StringImpl.cpp:(.text+0x7a14): undefined reference tou_strToUpper_55' StringImpl.cpp:(.text+0x7af9): undefined reference to u_toupper_55' StringImpl.cpp:(.text+0x7cd7): undefined reference tou_toupper_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/WTFString.o: In function WTF::charactersToIntStrict(unsigned char const, unsigned long, bool, int)': WTFString.cpp:(.text+0x40c9): undefined reference to u_charDirection_55' WTFString.cpp:(.text+0x4299): undefined reference to u_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/WTFString.o: In functionWTF::charactersToIntStrict(unsigned short const, unsigned long, bool, int)': WTFString.cpp:(.text+0x43d9): undefined reference to u_charDirection_55' WTFString.cpp:(.text+0x454a): undefined reference tou_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/WTFString.o: In function WTF::charactersToUIntStrict(unsigned char const, unsigned long, bool, int)': WTFString.cpp:(.text+0x4781): undefined reference to u_charDirection_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/text/WTFString.o:WTFString.cpp:(.text+0x4911): more undefined references to u_charDirection_55' follow /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/unicode/icu/CollatorICU.o: In function WTF::Collator::~Collator()': CollatorICU.cpp:(.text+0x9a): undefined reference to ucol_close_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/unicode/icu/CollatorICU.o: In function WTF::Collator::createCollator() const': CollatorICU.cpp:(.text+0x189): undefined reference to ucol_getLocaleByType_55' CollatorICU.cpp:(.text+0x1a0): undefined reference toucol_getAttribute_55' CollatorICU.cpp:(.text+0x1f0): undefined reference to ucol_open_55' CollatorICU.cpp:(.text+0x217): undefined reference toucol_setAttribute_55' CollatorICU.cpp:(.text+0x22c): undefined reference to ucol_setAttribute_55' CollatorICU.cpp:(.text+0x26b): undefined reference toucol_open_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/unicode/icu/CollatorICU.o: In function WTF::Collator::releaseCollator()': CollatorICU.cpp:(.text+0x39a): undefined reference toucol_close_55' /home/george/Downloads/qtwebkit-opensource-src-5.9.0/ build/Source/WTF//.obj/wtf/unicode/icu/CollatorICU.o: In function WTF::Collator::collate(unsigned short const, unsigned long, unsigned short const*, unsigned long) const': CollatorICU.cpp:(.text+0x316): undefined reference toucol_strcoll_55' CollatorICU.cpp:(.text+0x357): undefined reference to `ucol_strcoll_55' collect2: error: ld returned 1 exit status Makefile.jsc:82: recipe for target '../../bin/jsc' failed make[2]: [../../bin/jsc] Error 1 make[2]: Leaving directory '/home/george/Downloads/ qtwebkit-opensource-src-5.9.0/build/Source/JavaScriptCore' Makefile.JavaScriptCore:128: recipe for target 'sub-jsc-pro-make_first-ordered' failed make[1]: [sub-jsc-pro-make_first-ordered] Error 2 make[1]: Leaving directory '/home/george/Downloads/ qtwebkit-opensource-src-5.9.0/build/Source/JavaScriptCore' Makefile:95: recipe for target 'sub-Source-JavaScriptCore- JavaScriptCore-pro-make_first-ordered' failed make: *** [sub-Source-JavaScriptCore-JavaScriptCore-pro-make_first-ordered] Error 2

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407576219, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9pzA8D9j0qZrjX2s99W2g_KeNzrmVks5uJ6OlgaJpZM4U6yB2 .

kmatheussen commented 6 years ago

Okay, but from the error message, it seems like the moc binary used for "make packages" is for a different version of Qt than the one you are trying to compile Radium with.

On Wed, Jul 25, 2018 at 12:46 AM, GeorgeNs notifications@github.com wrote:

I always do a clean installation using make packages every time in a fresh folder but no luck so far ((

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407576364, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9px7MksAPRkm_GYBv7upnIg48Lhifks5uJ6PUgaJpZM4U6yB2 .

muziker commented 6 years ago

I'll speak for myself, i had to compile a separate qtwebkit because some applications needed to upgrade a few qtpackages that had some conflicts, and I thought it would be fun to track a totally different Qt installation.

GeorgeNs commented 6 years ago

Probably you are right, qtwebkit upgrade is not necessary . I built finally one branch. Very sad i have tried everything and maybe i will stay with 3.8.8 version. I have built difficult packages like ardour, faust with intel;s mkl , ambix plugins, sndpeek, but this one is the most hard to build . Now after i installed the qt5webkit in the same directory /opt/qt5 I get all these:

/opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::hitTestContent(QPoint const&) const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toUndoStepQt::undo()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::mouseReleaseEvent(QMouseEvent*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::setSystemTrayIcon(QObject)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::scrollBarValue(Qt::Orientation) const@Qt_5' //usr/lib/x86_64-linux-gnu/libQt5WebKit.so.5: undefined reference toQWindowSystemInterface::registerTouchDevice(QTouchDevice)' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::selectedText() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::handleKeyEvent(QKeyEvent)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::inputMethodQuery(Qt::InputMethodQuery) const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::setScrollBarValue(Qt::Orientation, int)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::setDevicePixelRatio(float)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::dragUpdated(QMimeData const, QPoint const&, QFlags)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::touchEvent(QTouchEvent*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::frameRect() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::performDrag(QMimeData const*, QPoint const&, QFlags<Qt::DropAction>)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebHitTestResultPrivate::operator=(QWebHitTestResultPrivate const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to WebKit::setImagePlatformResource(char const*, QPixmap const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::swallowContextMenuEvent(QContextMenuEvent, QWebFrameAdapter)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::addToJavaScriptWindowObject(QString const&, QObject*, QWebFrameAdapter::ValueOwnership)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::selectedHtml() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::coreFrameUrl() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::dragLeaveEvent()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebSelectMethod::qt_metacast(char const*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::cancelLoad()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFullScreenRequest::QWebFullScreenRequest(QWebFullScreenRequest const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQtPluginWidgetAdapter::QtPluginWidgetAdapter()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QtPrintContext::pageCount() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::documentElement() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebElement::QWebElement(QWebElement const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQtPrintContext::~QtPrintContext()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::handleShortcutOverrideEvent(QKeyEvent*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::handleGestureEvent(QGestureEventFacade)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFullScreenRequest::~QWebFullScreenRequest()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::mouseMoveEvent(QMouseEvent)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::evaluateJavaScript(QString const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebSelectMethod::qt_metacall(QMetaObject::Call, int, void*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebHitTestResultPrivate::elementForInnerNode() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference tovtable for QWebSelectMethod@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::hasFocus() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebHitTestResultPrivate::~QWebHitTestResultPrivate()@Qt_5' //usr/lib/x86_64-linux-gnu/libQt5WebKit.so.5: undefined reference to QQuickFlickable::contentItem()' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::hasView() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to `QtPrintContext::QtPrintContext(QPainter, QRect const&, QWebFrameAdapter)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::defaultUserAgentString()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::setPaintsEntireContents(bool)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::ownerElement() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::metaData() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to `QWebFrameAdapter::renderRelativeCoords(QPainter, int, QRegion const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::setHtml(QString const&, QUrl const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::deletePage()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::focusInEvent(QFocusEvent*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::~QWebPageAdapter()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::isContentEditable() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::initializeWebCorePage()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::lastRequestedUrl() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toWebKit::initializeWebKitQt()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::addNotificationPresenterClient()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQtPluginWidgetAdapter::qt_metacast(char const)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::_q_cleanupLeakMessages()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::triggerAction(QWebPageAdapter::MenuAction, QWebHitTestResultPrivate, char const, bool)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QtPluginWidgetAdapter::staticMetaObject@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::QWebPageAdapter()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::drtRun@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::setGeolocationEnabledForFrame(QWebFrameAdapter, bool)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::ensureAbsoluteUrl(QUrl const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::securityOrigin() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::setTextSizeMultiplier(double)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::setZoomFactor(double)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::updateActionInternal(QWebPageAdapter::MenuAction, char const*, bool*, bool*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::toPlainText() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::zoomFactor() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebElement::QWebElement()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::supportsContentType(QString const&) const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::scrollPosition() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::setNetworkAccessManager(QNetworkAccessManager*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::baseUrl() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to UndoStepQt::text() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::_q_orientationChanged()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebHitTestResultPrivate::QWebHitTestResultPrivate(QWebHitTestResultPrivate const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::scrollBarGeometry(Qt::Orientation) const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::networkAccessManager()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebSelectMethod::staticMetaObject@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::inputMethodEvent(QInputMethodEvent*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFullScreenRequest::QWebFullScreenRequest()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::tryClosePage()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::dynamicPropertyChangeEvent(QObject, QDynamicPropertyChangeEvent)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::init(QWebPageAdapter*, QWebFrameData*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::~QWebFrameAdapter()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::init(QWebPageAdapter*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::isPlayingAudio() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::viewportAttributesForSize(QSize const&, QSize const&) const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::scrollBarMaximum(Qt::Orientation) const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::title() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::scrollBy(int, int)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::mousePressEvent(QMouseEvent*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::currentFrame() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::contentsSize() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebSettings::setAttribute(QWebSettings::WebAttribute, bool)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebElement::~QWebElement()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::adjustPointForClicking(QMouseEvent)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::didCloseInspector()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::setFocus()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::supportedContentTypes() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::scrollToAnchor(QString const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::setDelegatesScrolling(bool)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toUndoStepQt::redo()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::setFixedVisibleContentRect(QRect const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::treatSchemeAsLocal(QString const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::setPluginsVisible(bool)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebElement::findAll(QString const&) const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::load(QNetworkRequest const&, QNetworkAccessManager::Operation, QByteArray const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::customLayoutSize() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::QWebFrameAdapter()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::setContentEditable(bool)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebElement::findFirst(QString const&) const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::setCustomLayoutSize(QSize const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::visibilityState() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::handleScrolling(QKeyEvent)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebSelectMethod::selectItem(int, bool, bool)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::setViewportSize(QSize const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::didShowInspector()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebSettings::iconForUrl(QUrl const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::hasFocusedNode() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::_q_onLoadProgressChanged(int)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::childFrames() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQtPluginWidgetAdapter::qt_metacall(QMetaObject::Call, int, void*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::triggerCustomAction(int, QString const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::dragEntered(QMimeData const, QPoint const&, QFlags)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::setVisibilityState(QWebPageAdapter::VisibilityState)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::clearCoreFrame()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::setNotificationsAllowedForFrame(QWebFrameAdapter*, bool)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::updatePositionDependentMenuActions(QPoint const&, QBitArray)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::updateBackgroundRecursively(QColor const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQtPrintContext::spoolPage(int, float)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::hasSystemTrayIcon() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::contextMenuItemTagForAction(QWebPageAdapter::MenuAction, bool) const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::focusOutEvent(QFocusEvent*)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference tovtable for QtPluginWidgetAdapter@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::setContent(QByteArray const&, QString const&, QUrl const&)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toWebKit::setWebKitWidgetsInitCallback(WebCore::QStyleFacade ()(QWebPageAdapter))@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebFrameAdapter::toHtml() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::findText(QString const&, QWebPageAdapter::FindFlag)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to `QWebPageAdapter::mouseDoubleClickEvent(QMouseEvent)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::devicePixelRatio()@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebFrameAdapter::uniqueName() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to QWebPageAdapter::wheelEvent(QWheelEvent*, int)@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference toQWebPageAdapter::hasSelection() const@Qt_5' /opt/Qt/5.9.6/gcc_64/lib/libQt5WebKitWidgets.so: undefined reference to `QWebFrameAdapter::setScrollBarPolicy(Qt::Orientation, Qt::ScrollBarPolicy)@Qt_5' collect2: error: ld returned 1 exit status Makefile:557: recipe for target 'bin/radium_linux.bin' failed

screenshot from 2018-07-25 17-39-22

muziker commented 6 years ago

Hi george, the reason you're getting the undefined references is the compiled object files cannot resolve the symbols to a library. Usually the cause of this is during compilation, it compiles fine, but once you're trying to resolve the symbols during any other point, the linker is unable to find the correct library to link to. This means you've compiled with one environment, but that environment is not correct now. You can check by using ldd to confirm the linked libraries - ldd . if any of the linked libraries are not found, then you'll get undefined references. What i'll do is use patchelf to change the path to the linked library. On the other hand, since the cause is really not a robust build environment, I would try looking to change the build instructions and the build scripts.

muziker commented 6 years ago

Ok so i've managed to get radium to compile. for point 3: After changing the #ifdef error handling to check the BOOST_VERSION, i had gotten some errors with of: Qt/Qt_vst_paths_widget_callbacks.h:32:69: error: expected class-name before ‘{’ token

It turns out that one of the header files for vst_paths_widget didn't have it's header files generated by the uic moc tool to change the .ui file into a header file. So i ran that manually to generate the header file. Also, there was a "not found" in ldd radium_linux.bin file, so i used patchelf to insert an rpath there to get the binary to work. Now i'm listening to the blowfish demo song.

GeorgeNs commented 6 years ago

oh yeah fixed.Strangely enough the old qt5webkit libraries were still in /usr/lib... dir so i replaced them manually with the new ones and it compiles and builds without errors!!!Thank you guys, However launching the application shows this:

Fatal: This application failed to start because it could not find or load the Qt platform plugin "xcb" in "".

Reinstalling the application may fix this problem. ((null):0, (null)) Aborted (core dumped)

I will try to fix it later.Cheers!

GeorgeNs commented 6 years ago

HEY I forgot to execute the command that needs to load the plugins,my bad....It works!!! perfect!!! Manyy Thanks!

kmatheussen commented 6 years ago

You can also set LD_LIBRARY_PATH:

export LD_LIBRARY_PATH=/opt/qt/lib:$LD_LIBRARY_PATH

On Thu, Jul 26, 2018 at 4:50 AM, GeorgeNs notifications@github.com wrote:

oh yeah fixed.Strangely enough the old qt5webkit libraries were still in /usr/lib... dir so i replaced them manually with the new ones and it compiles and builds without erros. However launching the application shows this:

Fatal: This application failed to start because it could not find or load the Qt platform plugin "xcb" in "".

Reinstalling the application may fix this problem. ((null):0, (null)) Aborted (core dumped)

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407959340, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9p2Uc-SN3-yPqqW1tAuY_200fQsLTks5uKS5sgaJpZM4U6yB2 .

kmatheussen commented 6 years ago

Actually, it's a bit surprising that the program runs if you haven't set LD_LIBRARY_PATH. It might not be very stable. Radium is a hard program to compile up because of the massive amount of 3rd party dependencies, so I recommend using the prebuilt binaries instead. The only significant restriction of the free demo version is that can't use more than two VST plugins.

On Thu, Jul 26, 2018 at 10:40 AM, Kjetil Matheussen < k.s.matheussen@gmail.com> wrote:

You can also set LD_LIBRARY_PATH:

export LD_LIBRARY_PATH=/opt/qt/lib:$LD_LIBRARY_PATH

On Thu, Jul 26, 2018 at 4:50 AM, GeorgeNs notifications@github.com wrote:

oh yeah fixed.Strangely enough the old qt5webkit libraries were still in /usr/lib... dir so i replaced them manually with the new ones and it compiles and builds without erros. However launching the application shows this:

Fatal: This application failed to start because it could not find or load the Qt platform plugin "xcb" in "".

Reinstalling the application may fix this problem. ((null):0, (null)) Aborted (core dumped)

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/kmatheussen/radium/issues/1127#issuecomment-407959340, or mute the thread https://github.com/notifications/unsubscribe-auth/ABF9p2Uc-SN3-yPqqW1tAuY_200fQsLTks5uKS5sgaJpZM4U6yB2 .

muziker commented 6 years ago

george: You should be able to use qtchooser to set the output path. The build scripts uic+moc should find the correct settings for the build to work. kjetil: Having said that, i did have to change the boost version check, and manually build faust2. And for some reason, the .ui file for one qt plugin wasn't generated. :) During the build process, qtchooser sets the qmake version. So if you have multiple versions of Qt, it should do the right thing and output the appropriate Include and Lib flags for the build. It seems from past correspondence that you did put the correct conf file for qtchooser and possibly set the QT_SELECT to the correct version. To check, run qmake --version to see the version that is being used. You can use LD_LIBRARY_PATH after you've compiled the new qtwebkit and want to point the linker to where it can find the correct dynamic library, because you've just copied over the system's version of Qt/qtwebkit. Usually this is done if you've built shared libs and put them into a non standard path.

GeorgeNs commented 6 years ago

I had totally removed the qt5webkit dev package (not the qtwebkit-dev,they are different) but for some reasons the old files still there,that was a problem since i had already configure the qtchooser and set the paths of my new QT version and libraries included etc. I will try export to see how will be

GeorgeNs commented 6 years ago

Hi! It compiles and builds again with no problems. It's not surprise that it runs if idon't use export because I have added my lib paths to my ld.so.conf file -> /opt/qt5/lib and my qt5 path from profile.d with a script.Also I had modified the qtchooser so qmake --version gives the result i want. The problem was clearly that the old qt5webkit dev package wasn't totally cleared from my system Cool piece of music software.Cheers