guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates updated: gnu: qtbase: Patch the 'moc' executable to


From: guix-commits
Subject: branch core-updates updated: gnu: qtbase: Patch the 'moc' executable to cope with GCCs C++ headers.
Date: Sun, 29 Mar 2020 06:37:11 -0400

This is an automated email from the git hooks/post-receive script.

mbakke pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new 26e92a3  gnu: qtbase: Patch the 'moc' executable to cope with GCCs C++ 
headers.
26e92a3 is described below

commit 26e92a3025513ec8e2b243cf819a7526a5d8d7c3
Author: Marius Bakke <address@hidden>
AuthorDate: Sun Mar 29 11:35:04 2020 +0200

    gnu: qtbase: Patch the 'moc' executable to cope with GCCs C++ headers.
    
    * gnu/packages/patches/qtbase-moc-ignore-gcc-macro.patch: New file.
    * gnu/local.mk (dist_patch_DATA): Adjust accordingly.
    * gnu/packages/qt.scm (qtbase)[source](patches): Add it.
---
 gnu/local.mk                                           |  1 +
 gnu/packages/patches/qtbase-moc-ignore-gcc-macro.patch | 17 +++++++++++++++++
 gnu/packages/qt.scm                                    |  1 +
 3 files changed, 19 insertions(+)

diff --git a/gnu/local.mk b/gnu/local.mk
index b0b72e6..46e2936 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1385,6 +1385,7 @@ dist_patch_DATA =                                         
\
   %D%/packages/patches/qemu-fix-documentation-build-failure.patch      \
   %D%/packages/patches/qrcodegen-cpp-make-install.patch                \
   %D%/packages/patches/qt4-ldflags.patch                       \
+  %D%/packages/patches/qtbase-moc-ignore-gcc-macro.patch       \
   %D%/packages/patches/qtbase-use-TZDIR.patch                  \
   %D%/packages/patches/qtbase-QTBUG-81715.patch                        \
   %D%/packages/patches/qtscript-disable-tests.patch            \
diff --git a/gnu/packages/patches/qtbase-moc-ignore-gcc-macro.patch 
b/gnu/packages/patches/qtbase-moc-ignore-gcc-macro.patch
new file mode 100644
index 0000000..b296cf0
--- /dev/null
+++ b/gnu/packages/patches/qtbase-moc-ignore-gcc-macro.patch
@@ -0,0 +1,17 @@
+The moc executable loops through headers on CPLUS_INCLUDE_PATH and stumbles
+on the GCC internal _GLIBCXX_VISIBILITY macro.  Tell it to ignore it as it is
+not supposed to be looking there to begin with.
+
+Upstream report: https://bugreports.qt.io/browse/QTBUG-83160
+
+diff --git a/src/tools/moc/main.cpp b/src/tools/moc/main.cpp
+--- a/src/tools/moc/main.cpp
++++ b/src/tools/moc/main.cpp
+@@ -188,6 +188,7 @@ int runMoc(int argc, char **argv)
+     dummyVariadicFunctionMacro.arguments += Symbol(0, PP_IDENTIFIER, 
"__VA_ARGS__");
+     pp.macros["__attribute__"] = dummyVariadicFunctionMacro;
+     pp.macros["__declspec"] = dummyVariadicFunctionMacro;
++    pp.macros["_GLIBCXX_VISIBILITY"] = dummyVariadicFunctionMacro;
+ 
+     QString filename;
+     QString output;
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 81989f6..368cfb7 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -352,6 +352,7 @@ developers using C++ or QML, a CSS & JavaScript like 
language.")
                "0pb68d30clksdhgy8n6rrs838bb3qcsfq4pv463yy2nr4p5kk2di"))
              ;; Use TZDIR to avoid depending on package "tzdata".
              (patches (search-patches "qtbase-use-TZDIR.patch"
+                                      "qtbase-moc-ignore-gcc-macro.patch"
                                       "qtbase-QTBUG-81715.patch"))
              (modules '((guix build utils)))
              (snippet



reply via email to

[Prev in Thread] Current Thread [Next in Thread]