You may start getting this error once you upgrade the compiler:

  Plugin uses incompatible Qt library
  expected build key "x86_64 linux g++-6 full-config", got "x86_64 linux g++-4 
full-config"
"The plugin '/usr/lib64/kde4/plugins/styles/breeze.so' uses incompatible Qt 
library. Expected build key "x86_64 linux g++-6 full-config", got "x86_64 linux 
g++-4 full-config"" 

The configure script needs a simple patch to recognise GCC 6 as the same ABI as 
GCC 4 and 5. Please apply it to your Qt 4 builds if your distro is switching 
to GCC 6.

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center
diff --git a/configure b/configure
index 10ad7ca..3cdae43 100644
--- a/configure
+++ b/configure
@@ -8050,7 +8050,7 @@ g++*)
     3.*)
         COMPILER_VERSION="3.*"
         ;;
-    5*|4.*)
+    [56789]*|4.*)
         COMPILER_VERSION="4"
         ;;
     *)
_______________________________________________
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development

Reply via email to