I am using GCC 8 on Arch. The build of the timeline refactoring branch fails. I think the failure might have something to do with this error: -----------------------------snip-------------------------- [ 38%] Building CXX object src/CMakeFiles/kdenliveLib.dir/dialogs/kdenlivesettingsdialog.cpp.o /var/tmp/yaourt-tmp-evert/aur-kdenlive-testing-git/src/kdenlive/src/dialogs/kdenlivesettingsdialog.cpp: In constructor ‘KdenliveSettingsDialog::KdenliveSettingsDialog(const QMap<QString, QString>&, bool, QWidget*)’: /var/tmp/yaourt-tmp-evert/aur-kdenlive-testing-git/src/kdenlive/src/dialogs/kdenlivesettingsdialog.cpp:263:118: error: invalid use of incomplete type ‘class QAction’ QAction *act = new QAction(KoIconUtils::themedIcon(QStringLiteral("configure")), i18n("Configure profiles"), this); ^ --------------------------snip-----------------------------
It now fails at 40%, with exactly the same errror.... [ 40%] Building CXX object src/CMakeFiles/kdenliveLib.dir/dialogs/kdenlivesettingsdialog.cpp.o /var/tmp/yaourt-tmp-evert/aur-kdenlive-testing-git/src/kdenlive/src/dialogs/kdenlivesettingsdialog.cpp: In constructor ‘KdenliveSettingsDialog::KdenliveSettingsDialog(const QMap<QString, QString>&, bool, QWidget*)’: /var/tmp/yaourt-tmp-evert/aur-kdenlive-testing-git/src/kdenlive/src/dialogs/kdenlivesettingsdialog.cpp:263:118: error: invalid use of incomplete type ‘class QAction’ QAction *act = new QAction(KoIconUtils::themedIcon(QStringLiteral("configure")), i18n("Configure profiles"), this);
Git commit 40b343b365ed46207d5b635b7468c8bc213fc1e3 by Jean-Baptiste Mardelle. Committed on 18/06/2018 at 06:48. Pushed by mardelle into branch 'refactoring_timeline'. Fix compilation M +1 -0 src/dialogs/kdenlivesettingsdialog.cpp https://commits.kde.org/kdenlive/40b343b365ed46207d5b635b7468c8bc213fc1e3
Now it fails at 44%, with a nearly identical error: [ 44%] Building CXX object src/CMakeFiles/kdenliveLib.dir/dvdwizard/dvdwizardvob.cpp.o /var/tmp/yaourt-tmp-evert/aur-kdenlive-testing-git/src/kdenlive/src/dvdwizard/dvdwizardvob.cpp: In constructor ‘DvdWizardVob::DvdWizardVob(QWidget*)’: /var/tmp/yaourt-tmp-evert/aur-kdenlive-testing-git/src/kdenlive/src/dvdwizard/dvdwizardvob.cpp:133:60: error: invalid use of incomplete type ‘class QAction’ m_transcodeAction = new QAction(i18n("Transcode"), this);
Should be fixed now, can you please test?
It now fails at 61%, we are getting there! --------------------------- [ 61%] Building CXX object src/CMakeFiles/kdenliveLib.dir/project/dialogs/profilewidget.cpp.o /var/tmp/yaourt-tmp-evert/aur-kdenlive-testing-git/src/kdenlive/src/project/dialogs/profilewidget.cpp: In constructor ‘ProfileWidget::ProfileWidget(QWidget*)’: /var/tmp/yaourt-tmp-evert/aur-kdenlive-testing-git/src/kdenlive/src/project/dialogs/profilewidget.cpp:76:25: error: invalid use of incomplete type ‘class QHeaderView’ m_treeView->header()->hide(); ^~ In file included from /usr/include/qt/QtWidgets/QTreeView:1, from /var/tmp/yaourt-tmp-evert/aur-kdenlive-testing-git/src/kdenlive/src/project/dialogs/profilewidget.cpp:36: /usr/include/qt/QtWidgets/qtreeview.h:53:7: note: forward declaration of ‘class QHeaderView’ class QHeaderView; --------------------------------------------
Git commit e116183444524e5a5076c1831a5ff0a9030c4393 by Jean-Baptiste Mardelle. Committed on 20/06/2018 at 10:37. Pushed by mardelle into branch 'refactoring_timeline'. Fix compilation M +1 -0 src/project/dialogs/profilewidget.cpp https://commits.kde.org/kdenlive/e116183444524e5a5076c1831a5ff0a9030c4393
Could you please use "make -k" to continue compilation after each error and summarize all errors?
Getting further, it now fails at 74%. :) I'll try the make -k, it's not something I have done before. Here is the error now: -------------------- [ 74%] Building CXX object src/CMakeFiles/kdenliveLib.dir/titler/titlewidget.cpp.o /var/tmp/yaourt-tmp-evert/aur-kdenlive-testing-git/src/kdenlive/src/titler/titlewidget.cpp: In constructor ‘TitleWidget::TitleWidget(const QUrl&, const Timecode&, const QString&, Monitor*, QWidget*)’: /var/tmp/yaourt-tmp-evert/aur-kdenlive-testing-git/src/kdenlive/src/titler/titlewidget.cpp:95:45: error: invalid use of incomplete type ‘class QButtonGroup’ auto *colorGroup = new QButtonGroup(this); ^ In file included from /usr/include/qt/QtWidgets/qtoolbutton.h:45
Git commit c60e584d474a19e264a0d0f31b6dd5d454749f7c by Jean-Baptiste Mardelle. Committed on 22/06/2018 at 17:29. Pushed by mardelle into branch 'refactoring_timeline'. Fix compilation M +1 -0 src/titler/titlewidget.cpp https://commits.kde.org/kdenlive/c60e584d474a19e264a0d0f31b6dd5d454749f7c
It compiles fine now. Thanks for taking the time to fix it! Kind regards, -Evert-