Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bedroge/42241c861ad4f69d725c819a35f5b215 to your computer and use it in GitHub Desktop.
Save bedroge/42241c861ad4f69d725c819a35f5b215 to your computer and use it in GitHub Desktop.
(partial) EasyBuild log for failed build of /local/tmp/f115261/eb-jFqFvx/files_pr10694/m/MRtrix/MRtrix-3.0.0-foss-2020a-Python-3.8.2.eb (PR #10694)
#include <QObject>
class Foo: public QObject {
Q_OBJECT;
public:
Foo();
~Foo();
public slots:
void setValue(int value);
signals:
void valueChanged (int newValue);
private:
int value_;
};
---
source file "qt.cpp":
---
#include <iostream>
#include "qt.h"
Foo::Foo() : value_ (42) { connect (this, SIGNAL(valueChanged(int)), this, SLOT(setValue(int))); }
Foo::~Foo() { std::cout << qVersion() << "\n"; }
void Foo::setValue (int value) { value_ = value; }
int main() { Foo f; }
---
project file "qt.pro":
---
CONFIG += c++11
QT += core gui opengl svg network
HEADERS += qt.h
SOURCES += qt.cpp
---
EXEC <<
CMD: qmake
EXIT: 0
STDOUT:
Info: creating stash file /local/tmp/f115261/eb-jFqFvx/tmpwggomc2v/.qmake.stash
>>
reading Qt parameters from file 'Makefile'... ok
qt_defines: ['-DQT_NO_DEBUG', '-DQT_OPENGL_LIB', '-DQT_SVG_LIB', '-DQT_WIDGETS_LIB', '-DQT_GUI_LIB', '-DQT_NETWORK_LIB', '-DQT_CORE_LIB']
qt_cflags: ['-m64', '-pipe', '-O2', '-std=gnu++11', '-Wall', '-Wextra', '-D_REENTRANT', '-fPIC', '$(DEFINES)']
qt_includes: ['-I.', '-I/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include', '-I/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtOpenGL', '-I/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtSvg', '-I/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtWidgets', '-I/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtGui', '-I/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtNetwork', '-I/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore', '-I.', '-I/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/mkspecs/linux-g++-64']
qt_libs: ['$(SUBLIBS)', '-L/software/software/libGLU/9.0.1-GCCcore-9.3.0/lib', '/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/lib/libQt5OpenGL.so', '/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/lib/libQt5Svg.so', '/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/lib/libQt5Widgets.so', '/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/lib/libQt5Gui.so', '/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/lib/libQt5Network.so', '/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/lib/libQt5Core.so', '-L/software/software/libglvnd/1.2.0-GCCcore-9.3.0/lib', '-lGL', '-lpthread']
qt_ldflags: ['-m64', '-Wl,-O1', '-Wl,-rpath,/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/lib']
EXEC <<
CMD: moc qt.h -o qt_moc.cpp
EXIT: 0
>>
EXEC <<
CMD: g++ -c -std=c++11 -DMRTRIX_BUILD_TYPE="release version" -pthread -fPIC -O2 -ftree-vectorize -march=native -fno-math-errno -std=c++11 -DMRTRIX_WORD64 -DMRTRIX_HAVE_EIGEN_UNSUPPORTED_SPECIAL_FUNCTIONS -DMRTRIX_TIFF_SUPPORT -DMRTRIX_PNG_SUPPORT -idirafter /software/software/libpng/1.6.37-GCCcore-9.3.0/include/libpng16 -DEIGEN_FFTW_DEFAULT -m64 -pipe -std=gnu++11 -Wall -Wextra -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -idirafter /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include -idirafter /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtOpenGL -idirafter /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtSvg -idirafter /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtWidgets -idirafter /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtGui -idirafter /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtNetwork -idirafter /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore -idirafter /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/mkspecs/linux-g++-64 qt.cpp -o qt.o
EXIT: 1
STDERR:
In file included from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/QObject:1,
from qt.h:1,
from qt.cpp:2:
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:78:14: error: missing binary operator before token "("
78 | #if QT_CONFIG(regularexpression)
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:81:25: error: missing binary operator before token "("
81 | #if !QT_DEPRECATED_SINCE(5, 14) || QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
| ^
In file included from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/QObject:1,
from qt.h:1,
from qt.cpp:2:
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:190:24: error: missing binary operator before token "("
190 | #if QT_DEPRECATED_SINCE(5, 13)
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:204:14: error: missing binary operator before token "("
204 | #if QT_CONFIG(regularexpression)
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:497:24: error: missing binary operator before token "("
497 | #if QT_DEPRECATED_SINCE(5, 0)
| ^
In file included from /usr/include/QtCore/qdatastream.h:46,
from /usr/include/QtCore/qmetatype.h:49,
from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:54,
from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/QObject:1,
from qt.h:1,
from qt.cpp:2:
/usr/include/QtCore/qiodevice.h:68:14: error: invalid use of incomplete type class QObject
68 | : public QObject
| ^~~~~~~
In file included from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:46,
from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/QObject:1,
from qt.h:1,
from qt.cpp:2:
/usr/include/QtCore/qobjectdefs.h:249:7: note: forward declaration of class QObject
249 | class QObject;
| ^~~~~~~
In file included from /usr/include/QtCore/qnamespace.h:45,
from /usr/include/QtCore/qobjectdefs.h:45,
from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:46,
from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/QObject:1,
from qt.h:1,
from qt.cpp:2:
/usr/include/QtCore/qiodevice.h: In member function QIODevicePrivate* QIODevice::d_func():
/usr/include/QtCore/qiodevice.h:168:5: error: d_ptr was not declared in this scope
168 | Q_DECLARE_PRIVATE(QIODevice)
| ^~~~~~~~~~~~~~~~~
/usr/include/QtCore/qiodevice.h: In member function const QIODevicePrivate* QIODevice::d_func() const:
/usr/include/QtCore/qiodevice.h:168:5: error: d_ptr was not declared in this scope
168 | Q_DECLARE_PRIVATE(QIODevice)
| ^~~~~~~~~~~~~~~~~
In file included from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:56,
from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/QObject:1,
from qt.h:1,
from qt.cpp:2:
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h: At global scope:
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:66:49: error: List was not declared in this scope; did you mean QList?
66 | template <> struct TypesAreDeclaredMetaType<List<>> { enum { Value = true }; };
| ^~~~
| QList
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:66:53: error: template argument 1 is invalid
66 | template <> struct TypesAreDeclaredMetaType<List<>> { enum { Value = true }; };
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:66:54: error: expected unqualified-id before > token
66 | template <> struct TypesAreDeclaredMetaType<List<>> { enum { Value = true }; };
| ^~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:67:79: error: List was not declared in this scope; did you mean QList?
67 | template <typename Arg, typename... Tail> struct TypesAreDeclaredMetaType<List<Arg, Tail...> >
| ^~~~
| QList
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:67:96: error: template argument 1 is invalid
67 | template <typename Arg, typename... Tail> struct TypesAreDeclaredMetaType<List<Arg, Tail...> >
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:67:98: error: expected unqualified-id before > token
67 | template <typename Arg, typename... Tail> struct TypesAreDeclaredMetaType<List<Arg, Tail...> >
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:72:40: error: List was not declared in this scope; did you mean QList?
72 | template <> struct ConnectionTypes<List<>, true>
| ^~~~
| QList
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:72:45: error: template argument 1 is invalid
72 | template <> struct ConnectionTypes<List<>, true>
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:72:45: error: template argument 2 is invalid
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:74:56: error: List was not declared in this scope; did you mean QList?
74 | template <typename... Args> struct ConnectionTypes<List<Args...>, true>
| ^~~~
| QList
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:74:65: error: expected parameter pack before ...
74 | template <typename... Args> struct ConnectionTypes<List<Args...>, true>
| ^~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:74:68: error: template argument 1 is invalid
74 | template <typename... Args> struct ConnectionTypes<List<Args...>, true>
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:74:68: error: template argument 2 is invalid
In file included from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:56,
from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/QObject:1,
from qt.h:1,
from qt.cpp:2:
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:80:5: error: expected class-name before { token
80 | {
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:81:28: error: FunctionPointer in namespace QtPrivate does not name a template type
81 | typedef QtPrivate::FunctionPointer<Func> FuncType;
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:83:37: error: QSlotObjectBase has not been declared
83 | static void impl(int which, QSlotObjectBase *this_, QObject *r, void **a, bool *ret)
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h: In static member function static void QtPrivate::QStaticSlotObject<Func, Args, R>::impl(int, int*, QObject*, void**, bool*):
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:86:18: error: Destroy was not declared in this scope
86 | case Destroy:
| ^~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:89:18: error: Call was not declared in this scope
89 | case Call:
| ^~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:90:17: error: FuncType has not been declared
90 | FuncType::template call<Args, R>(static_cast<QStaticSlotObject*>(this_)->function, r, a);
| ^~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:90:45: error: expected primary-expression before , token
90 | FuncType::template call<Args, R>(static_cast<QStaticSlotObject*>(this_)->function, r, a);
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:90:48: error: expected primary-expression before > token
90 | FuncType::template call<Args, R>(static_cast<QStaticSlotObject*>(this_)->function, r, a);
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:92:18: error: Compare was not declared in this scope
92 | case Compare: // not implemented
| ^~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:93:18: error: NumOperations was not declared in this scope
93 | case NumOperations:
| ^~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h: In constructor QtPrivate::QStaticSlotObject<Func, Args, R>::QStaticSlotObject(Func):
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject_impl.h:98:46: error: class QtPrivate::QStaticSlotObject<Func, Args, R> does not have any field named QSlotObjectBase
98 | explicit QStaticSlotObject(Func f) : QSlotObjectBase(&impl), function(f) {}
| ^~~~~~~~~~~~~~~
In file included from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/QObject:1,
from qt.h:1,
from qt.cpp:2:
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h: At global scope:
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:92:92: error: Qt::FindChildOptions has not been declared
92 | const QMetaObject &mo, QList<void *> *list, Qt::FindChildOptions options);
| ^~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:94:92: error: Qt::FindChildOptions has not been declared
94 | const QMetaObject &mo, QList<void *> *list, Qt::FindChildOptions options);
| ^~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:95:73: error: QRegularExpression does not name a type
95 | Q_CORE_EXPORT void qt_qFindChildren_helper(const QObject *parent, const QRegularExpression &re,
| ^~~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:96:92: error: Qt::FindChildOptions has not been declared
96 | const QMetaObject &mo, QList<void *> *list, Qt::FindChildOptions options);
| ^~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:97:116: error: Qt::FindChildOptions has not been declared
97 | Q_CORE_EXPORT QObject *qt_qFindChild_helper(const QObject *parent, const QString &name, const QMetaObject &mo, Qt::FindChildOptions options);
| ^~~~~~~~~~~~~~~~
In file included from /apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/QObject:1,
from qt.h:1,
from qt.cpp:2:
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:162:38: error: Qt::TimerType has not been declared
162 | int startTimer(int interval, Qt::TimerType timerType = Qt::CoarseTimer);
| ^~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:164:5: error: Q_ALWAYS_INLINE does not name a type
164 | Q_ALWAYS_INLINE
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:173:62: error: Qt::FindChildOptions has not been declared
173 | inline T findChild(const QString &aName = QString(), Qt::FindChildOptions options = Qt::FindChildrenRecursively) const
| ^~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:180:72: error: Qt::FindChildOptions has not been declared
180 | inline QList<T> findChildren(const QString &aName = QString(), Qt::FindChildOptions options = Qt::FindChildrenRecursively) const
| ^~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:222:25: error: Connection in struct QMetaObject does not name a type
222 | static QMetaObject::Connection connect(const QObject *sender, const char *signal,
| ^~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:225:25: error: Connection in struct QMetaObject does not name a type
225 | static QMetaObject::Connection connect(const QObject *sender, const QMetaMethod &signal,
| ^~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:229:25: error: Connection in struct QMetaObject does not name a type
229 | inline QMetaObject::Connection connect(const QObject *sender, const char *signal,
| ^~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:242:32: error: Connection in struct QMetaObject does not name a type
242 | static inline QMetaObject::Connection connect(const typename QtPrivate::FunctionPointer<Func1>::Object *sender, Func1 signal,
| ^~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:273:58: error: FunctionPointer is not a member of QtPrivate
273 | static inline typename std::enable_if<int(QtPrivate::FunctionPointer<Func2>::ArgumentCount) >= 0, QMetaObject::Connection>::type
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:273:82: error: ::ArgumentCount has not been declared
273 | static inline typename std::enable_if<int(QtPrivate::FunctionPointer<Func2>::ArgumentCount) >= 0, QMetaObject::Connection>::type
| ^~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:273:126: error: template argument 1 is invalid
273 | static inline typename std::enable_if<int(QtPrivate::FunctionPointer<Func2>::ArgumentCount) >= 0, QMetaObject::Connection>::type
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:273:127: error: expected identifier before :: token
273 | static inline typename std::enable_if<int(QtPrivate::FunctionPointer<Func2>::ArgumentCount) >= 0, QMetaObject::Connection>::type
| ^~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:274:13: error: expected initializer before connect
274 | connect(const typename QtPrivate::FunctionPointer<Func1>::Object *sender, Func1 signal, Func2 slot)
| ^~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:281:58: error: FunctionPointer is not a member of QtPrivate
281 | static inline typename std::enable_if<int(QtPrivate::FunctionPointer<Func2>::ArgumentCount) >= 0 &&
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:281:82: error: ::ArgumentCount has not been declared
281 | static inline typename std::enable_if<int(QtPrivate::FunctionPointer<Func2>::ArgumentCount) >= 0 &&
| ^~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:282:129: error: template argument 1 is invalid
282 | !QtPrivate::FunctionPointer<Func2>::IsPointerToMemberFunction, QMetaObject::Connection>::type
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:282:130: error: expected identifier before :: token
282 | !QtPrivate::FunctionPointer<Func2>::IsPointerToMemberFunction, QMetaObject::Connection>::type
| ^~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:283:13: error: expected initializer before connect
283 | connect(const typename QtPrivate::FunctionPointer<Func1>::Object *sender, Func1 signal, const QObject *context, Func2 slot,
| ^~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:313:54: error: FunctionPointer is not a member of QtPrivate
313 | static inline typename std::enable_if<QtPrivate::FunctionPointer<Func2>::ArgumentCount == -1, QMetaObject::Connection>::type
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:313:54: error: FunctionPointer is not a member of QtPrivate
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:313:75: error: template argument 1 is invalid
313 | static inline typename std::enable_if<QtPrivate::FunctionPointer<Func2>::ArgumentCount == -1, QMetaObject::Connection>::type
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:313:76: error: expected identifier before :: token
313 | static inline typename std::enable_if<QtPrivate::FunctionPointer<Func2>::ArgumentCount == -1, QMetaObject::Connection>::type
| ^~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:313:92: error: expected initializer before == token
313 | static inline typename std::enable_if<QtPrivate::FunctionPointer<Func2>::ArgumentCount == -1, QMetaObject::Connection>::type
| ^~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:321:54: error: FunctionPointer is not a member of QtPrivate
321 | static inline typename std::enable_if<QtPrivate::FunctionPointer<Func2>::ArgumentCount == -1, QMetaObject::Connection>::type
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:321:54: error: FunctionPointer is not a member of QtPrivate
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:321:75: error: template argument 1 is invalid
321 | static inline typename std::enable_if<QtPrivate::FunctionPointer<Func2>::ArgumentCount == -1, QMetaObject::Connection>::type
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:321:76: error: expected identifier before :: token
321 | static inline typename std::enable_if<QtPrivate::FunctionPointer<Func2>::ArgumentCount == -1, QMetaObject::Connection>::type
| ^~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:321:92: error: expected initializer before == token
321 | static inline typename std::enable_if<QtPrivate::FunctionPointer<Func2>::ArgumentCount == -1, QMetaObject::Connection>::type
| ^~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:360:47: error: Connection in struct QMetaObject does not name a type
360 | static bool disconnect(const QMetaObject::Connection &);
| ^~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:367:61: error: FunctionPointer in namespace QtPrivate does not name a template type
367 | static inline bool disconnect(const typename QtPrivate::FunctionPointer<Func1>::Object *sender, Func1 signal,
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:367:76: error: expected , or ... before < token
367 | static inline bool disconnect(const typename QtPrivate::FunctionPointer<Func1>::Object *sender, Func1 signal,
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:384:61: error: FunctionPointer in namespace QtPrivate does not name a template type
384 | static inline bool disconnect(const typename QtPrivate::FunctionPointer<Func1>::Object *sender, Func1 signal,
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:384:76: error: expected , or ... before < token
384 | static inline bool disconnect(const typename QtPrivate::FunctionPointer<Func1>::Object *sender, Func1 signal,
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:412:5: error: QT_DEPRECATED_VERSION_5_14 does not name a type; did you mean QT_DEPRECATED_VARIABLE?
412 | QT_DEPRECATED_VERSION_5_14
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
| QT_DEPRECATED_VARIABLE
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:414:34: error: expected identifier before string constant
414 | QT_DEPRECATED_VERSION_X_5_14("Use setProperty()")
| ^~~~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:414:34: error: expected , or ... before string constant
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:414:53: error: expected ; at end of member declaration
414 | QT_DEPRECATED_VERSION_X_5_14("Use setProperty()")
| ^
| ;
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:416:34: error: expected identifier before string constant
416 | QT_DEPRECATED_VERSION_X_5_14("Use property()")
| ^~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:416:34: error: expected , or ... before string constant
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:416:50: error: expected ; at end of member declaration
416 | QT_DEPRECATED_VERSION_X_5_14("Use property()")
| ^
| ;
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:416:5: error: int QObject::QT_DEPRECATED_VERSION_X_5_14(int) cannot be overloaded with int QObject::QT_DEPRECATED_VERSION_X_5_14(int)
416 | QT_DEPRECATED_VERSION_X_5_14("Use property()")
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:414:5: note: previous declaration int QObject::QT_DEPRECATED_VERSION_X_5_14(int)
414 | QT_DEPRECATED_VERSION_X_5_14("Use setProperty()")
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:422:55: error: QPrivateSignal has not been declared
422 | void objectNameChanged(const QString &objectName, QPrivateSignal);
| ^~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:471:25: error: Connection in struct QMetaObject does not name a type
471 | static QMetaObject::Connection connectImpl(const QObject *sender, void **signal,
| ^~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:162:64: error: CoarseTimer is not a member of Qt
162 | int startTimer(int interval, Qt::TimerType timerType = Qt::CoarseTimer);
| ^~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:173:93: error: FindChildrenRecursively is not a member of Qt
173 | inline T findChild(const QString &aName = QString(), Qt::FindChildOptions options = Qt::FindChildrenRecursively) const
| ^~~~~~~~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:180:103: error: FindChildrenRecursively is not a member of Qt
180 | inline QList<T> findChildren(const QString &aName = QString(), Qt::FindChildOptions options = Qt::FindChildrenRecursively) const
| ^~~~~~~~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h: In static member function static bool QObject::disconnect(int):
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:370:28: error: FunctionPointer in namespace QtPrivate does not name a template type
370 | typedef QtPrivate::FunctionPointer<Func1> SignalType;
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:371:28: error: FunctionPointer in namespace QtPrivate does not name a template type
371 | typedef QtPrivate::FunctionPointer<Func2> SlotType;
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:373:38: error: HasQ_OBJECT_Macro is not a member of QtPrivate
373 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<typename SignalType::Object>::Value,
| ^~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:373:65: error: SignalType has not been declared
373 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<typename SignalType::Object>::Value,
| ^~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:373:83: error: expected ( before > token
373 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<typename SignalType::Object>::Value,
| ^
| (
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:373:86: error: ::Value has not been declared
373 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<typename SignalType::Object>::Value,
| ^~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:373:9: error: there are no arguments to Q_STATIC_ASSERT_X that depend on a template parameter, so a declaration of Q_STATIC_ASSERT_X must be available [-fpermissive]
373 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<typename SignalType::Object>::Value,
| ^~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:373:9: note: (if you use -fpermissive, G++ will accept your code, but allowing the use of an undeclared name is deprecated)
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:377:39: error: CheckCompatibleArguments is not a member of QtPrivate
377 | Q_STATIC_ASSERT_X((QtPrivate::CheckCompatibleArguments<typename SignalType::Arguments, typename SlotType::Arguments>::value),
| ^~~~~~~~~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:377:73: error: SignalType has not been declared
377 | Q_STATIC_ASSERT_X((QtPrivate::CheckCompatibleArguments<typename SignalType::Arguments, typename SlotType::Arguments>::value),
| ^~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:377:94: error: expected ( before , token
377 | Q_STATIC_ASSERT_X((QtPrivate::CheckCompatibleArguments<typename SignalType::Arguments, typename SlotType::Arguments>::value),
| ^
| (
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:377:105: error: SlotType has not been declared
377 | Q_STATIC_ASSERT_X((QtPrivate::CheckCompatibleArguments<typename SignalType::Arguments, typename SlotType::Arguments>::value),
| ^~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:377:124: error: expected ( before > token
377 | Q_STATIC_ASSERT_X((QtPrivate::CheckCompatibleArguments<typename SignalType::Arguments, typename SlotType::Arguments>::value),
| ^
| (
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:377:127: error: ::value has not been declared
377 | Q_STATIC_ASSERT_X((QtPrivate::CheckCompatibleArguments<typename SignalType::Arguments, typename SlotType::Arguments>::value),
| ^~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:377:9: error: there are no arguments to Q_STATIC_ASSERT_X that depend on a template parameter, so a declaration of Q_STATIC_ASSERT_X must be available [-fpermissive]
377 | Q_STATIC_ASSERT_X((QtPrivate::CheckCompatibleArguments<typename SignalType::Arguments, typename SlotType::Arguments>::value),
| ^~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:380:66: error: signal was not declared in this scope; did you mean signals?
380 | return disconnectImpl(sender, reinterpret_cast<void **>(&signal), receiver, reinterpret_cast<void **>(&slot),
| ^~~~~~
| signals
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:380:75: error: receiver was not declared in this scope; did you mean receivers?
380 | return disconnectImpl(sender, reinterpret_cast<void **>(&signal), receiver, reinterpret_cast<void **>(&slot),
| ^~~~~~~~
| receivers
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:380:112: error: slot was not declared in this scope; did you mean slots?
380 | return disconnectImpl(sender, reinterpret_cast<void **>(&signal), receiver, reinterpret_cast<void **>(&slot),
| ^~~~
| slots
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:381:32: error: SignalType has not been declared
381 | &SignalType::Object::staticMetaObject);
| ^~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:380:31: error: invalid use of non-static member function QObject* QObject::sender() const
380 | return disconnectImpl(sender, reinterpret_cast<void **>(&signal), receiver, reinterpret_cast<void **>(&slot),
| ^~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:434:14: note: declared here
434 | QObject *sender() const;
| ^~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h: In static member function static bool QObject::disconnect(int):
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:391:28: error: FunctionPointer in namespace QtPrivate does not name a template type
391 | typedef QtPrivate::FunctionPointer<Func1> SignalType;
| ^~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:392:66: error: signal was not declared in this scope; did you mean signals?
392 | return disconnectImpl(sender, reinterpret_cast<void **>(&signal), receiver, zero,
| ^~~~~~
| signals
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:392:75: error: receiver was not declared in this scope; did you mean receivers?
392 | return disconnectImpl(sender, reinterpret_cast<void **>(&signal), receiver, zero,
| ^~~~~~~~
| receivers
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:392:85: error: zero was not declared in this scope; did you mean bzero?
392 | return disconnectImpl(sender, reinterpret_cast<void **>(&signal), receiver, zero,
| ^~~~
| bzero
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:393:32: error: SignalType has not been declared
393 | &SignalType::Object::staticMetaObject);
| ^~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:392:31: error: invalid use of non-static member function QObject* QObject::sender() const
392 | return disconnectImpl(sender, reinterpret_cast<void **>(&signal), receiver, zero,
| ^~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:434:14: note: declared here
434 | QObject *sender() const;
| ^~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h: At global scope:
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:481:21: error: Connection in struct QMetaObject does not name a type
481 | inline QMetaObject::Connection QObject::connect(const QObject *asender, const char *asignal,
| ^~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h: In function T qobject_cast(QObject*):
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:522:34: error: HasQ_OBJECT_Macro is not a member of QtPrivate
522 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<ObjType>::Value,
| ^~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:522:59: error: expected primary-expression before > token
522 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<ObjType>::Value,
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:522:62: error: ::Value has not been declared
522 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<ObjType>::Value,
| ^~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:522:5: error: there are no arguments to Q_STATIC_ASSERT_X that depend on a template parameter, so a declaration of Q_STATIC_ASSERT_X must be available [-fpermissive]
522 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<ObjType>::Value,
| ^~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h: In function T qobject_cast(const QObject*):
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:531:34: error: HasQ_OBJECT_Macro is not a member of QtPrivate
531 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<ObjType>::Value,
| ^~~~~~~~~~~~~~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:531:59: error: expected primary-expression before > token
531 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<ObjType>::Value,
| ^
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:531:62: error: ::Value has not been declared
531 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<ObjType>::Value,
| ^~~~~
/apps/sandybridge/software/Qt5/5.14.1-GCCcore-9.3.0/include/QtCore/qobject.h:531:5: error: there are no arguments to Q_STATIC_ASSERT_X that depend on a template parameter, so a declaration of Q_STATIC_ASSERT_X must be available [-fpermissive]
531 | Q_STATIC_ASSERT_X(QtPrivate::HasQ_OBJECT_Macro<ObjType>::Value,
| ^~~~~~~~~~~~~~~~~
qt.cpp: In constructor Foo::Foo():
qt.cpp:4:28: error: connect was not declared in this scope; did you mean disconnect?
4 | Foo::Foo() : value_ (42) { connect (this, SIGNAL(valueChanged(int)), this, SLOT(setValue(int))); }
| ^~~~~~~
| disconnect
>>
ERROR: error compiling Qt application!
See the file 'configure.log' for details. If this doesn't help and you need
further assistance, please post on the MRtrix3 community forum
(http://community.mrtrix.org/), and make sure to include the full contents of
the 'configure.log' file.
(at easybuild/tools/run.py:533 in parse_cmd_output)
== 2020-05-27 12:01:39,109 filetools.py:327 INFO Path /software/software/.locks/_software_software_MRtrix_3.0.0-foss-2020a-Python-3.8.2.lock successfully removed.
== 2020-05-27 12:01:39,109 easyblock.py:3094 INFO Lock removed: /software/software/.locks/_software_software_MRtrix_3.0.0-foss-2020a-Python-3.8.2.lock
== 2020-05-27 12:01:39,109 easyblock.py:3187 WARNING build failed (first 300 chars): cmd "python configure -verbose" exited with exit code 1 and output:
MRtrix build type requested: release version
PATH set to: /software/software/FFTW/3.3.8-gompi-2020a/bin:/software/software/LibTIFF/4.1.0-GCCcore-9.3.0/bin:/software/software/Qt5/5.14.1-GCCcore-9.3.0/bin:/software/software/JasPer/2
== 2020-05-27 12:01:39,109 easyblock.py:295 INFO Closing log for application name MRtrix version 3.0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment