Advertisement
phoenixbyrd

openage

May 14th, 2020
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.40 KB | None | 0 0
  1.  
  2. GCC -v output
  3.  
  4.  
  5. gcc -v
  6. Using built-in specs.
  7. COLLECT_GCC=gcc
  8. COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/8/lto-wrapper
  9. Target: arm-linux-gnueabihf
  10. Configured with: ../src/configure -v --with-pkgversion='Raspbian 8.3.0-6+rpi1' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=arm-linux-gnueabihf- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libitm --disable-libquadmath --disable-libquadmath-support --enable-plugin --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-sjlj-exceptions --with-arch=armv6 --with-fpu=vfp --with-float=hard --disable-werror --enable-checking=release --build=arm-linux-gnueabihf --host=arm-linux-gnueabihf --target=arm-linux-gnueabihf
  11. Thread model: posix
  12. gcc version 8.3.0 (Raspbian 8.3.0-6+rpi1)
  13.  
  14.  
  15.  
  16.  
  17. Attempting to make openage error
  18.  
  19. make -j4
  20. [ 1%] Automatic MOC for target libopenage
  21. [ 1%] Building CXX object libopenage/CMakeFiles/libopenage.dir/gui/guisys/private/livereload/recursive_directory_watcher_worker.cpp.o
  22. [ 1%] Building CXX object libopenage/CMakeFiles/libopenage.dir/gui/guisys/private/platforms/context_extraction_x11.cpp.o
  23. [ 1%] Building CXX object libopenage/CMakeFiles/libopenage.dir/gui/guisys/private/opengl_debug_logger.cpp.o
  24. [ 1%] Building CXX object libopenage/CMakeFiles/libopenage.dir/gui/integration/private/gui_filled_texture_handles.cpp.o
  25. /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp: In function ‘qtsdl::gl_debug_parameters qtsdl::get_current_opengl_debug_parameters(const QOpenGLContext&)’:
  26. /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp:21:46: error: ‘QOpenGLFunctions_4_4_Core’ was not declared in this scope
  27. if (current_source_context.versionFunctions<QOpenGLFunctions_4_4_Core>())
  28. ^~~~~~~~~~~~~~~~~~~~~~~~~
  29. /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp:21:46: note: suggested alternative: ‘QOpenGLFunctionsPrivate’
  30. if (current_source_context.versionFunctions<QOpenGLFunctions_4_4_Core>())
  31. ^~~~~~~~~~~~~~~~~~~~~~~~~
  32. QOpenGLFunctionsPrivate
  33. /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp:21:73: error: no matching function for call to ‘QOpenGLContext::versionFunctions<<expression error> >() const’
  34. if (current_source_context.versionFunctions<QOpenGLFunctions_4_4_Core>())
  35. ^
  36. In file included from /usr/include/arm-linux-gnueabihf/qt5/QtGui/qopenglfunctions.h:55,
  37. from /usr/include/arm-linux-gnueabihf/qt5/QtGui/QOpenGLFunctions:1,
  38. from /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.h:5,
  39. from /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp:3:
  40. /usr/include/arm-linux-gnueabihf/qt5/QtGui/qopenglcontext.h:194:11: note: candidate: ‘template<class TYPE> TYPE* QOpenGLContext::versionFunctions() const’
  41. TYPE *versionFunctions() const
  42. ^~~~~~~~~~~~~~~~
  43. /usr/include/arm-linux-gnueabihf/qt5/QtGui/qopenglcontext.h:194:11: note: template argument deduction/substitution failed:
  44. /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp:21:73: error: template argument 1 is invalid
  45. if (current_source_context.versionFunctions<QOpenGLFunctions_4_4_Core>())
  46. ^
  47. /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp: In function ‘void qtsdl::apply_opengl_debug_parameters(qtsdl::gl_debug_parameters, QOpenGLContext&)’:
  48. /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp:32:62: error: ‘QOpenGLFunctions_4_4_Core’ was not declared in this scope
  49. if (auto functions = current_dest_context.versionFunctions<QOpenGLFunctions_4_4_Core>()) {
  50. ^~~~~~~~~~~~~~~~~~~~~~~~~
  51. /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp:32:62: note: suggested alternative: ‘QOpenGLFunctionsPrivate’
  52. if (auto functions = current_dest_context.versionFunctions<QOpenGLFunctions_4_4_Core>()) {
  53. ^~~~~~~~~~~~~~~~~~~~~~~~~
  54. QOpenGLFunctionsPrivate
  55. /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp:32:89: error: no matching function for call to ‘QOpenGLContext::versionFunctions<<expression error> >()’
  56. nctions = current_dest_context.versionFunctions<QOpenGLFunctions_4_4_Core>()) {
  57. ^
  58.  
  59. In file included from /usr/include/arm-linux-gnueabihf/qt5/QtGui/qopenglfunctions.h:55,
  60. from /usr/include/arm-linux-gnueabihf/qt5/QtGui/QOpenGLFunctions:1,
  61. from /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.h:5,
  62. from /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp:3:
  63. /usr/include/arm-linux-gnueabihf/qt5/QtGui/qopenglcontext.h:194:11: note: candidate: ‘template<class TYPE> TYPE* QOpenGLContext::versionFunctions() const’
  64. TYPE *versionFunctions() const
  65. ^~~~~~~~~~~~~~~~
  66. /usr/include/arm-linux-gnueabihf/qt5/QtGui/qopenglcontext.h:194:11: note: template argument deduction/substitution failed:
  67. /home/pi/openage/libopenage/gui/guisys/private/opengl_debug_logger.cpp:32:89: error: template argument 1 is invalid
  68. nctions = current_dest_context.versionFunctions<QOpenGLFunctions_4_4_Core>()) {
  69. ^
  70.  
  71. make[2]: *** [libopenage/CMakeFiles/libopenage.dir/build.make:1441: libopenage/CMakeFiles/libopenage.dir/gui/guisys/private/opengl_debug_logger.cpp.o] Error 1
  72. make[2]: *** Waiting for unfinished jobs....
  73. make[1]: *** [CMakeFiles/Makefile2:1540: libopenage/CMakeFiles/libopenage.dir/all] Error 2
  74. make: *** [Makefile:163: all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement