[Libreoffice-commits] core.git: solenv/gbuild

Stephan Bergmann (via logerrit) logerrit at kemper.freedesktop.org
Wed Jan 8 09:38:14 UTC 2020


 solenv/gbuild/platform/com_GCC_defs.mk |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 0376acf23308730450b3e259e72a9c8b35cabc0f
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Wed Jan 8 09:15:47 2020 +0100
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Wed Jan 8 10:37:40 2020 +0100

    Enable Clang -Wembedded-directive
    
    ...which might have helped avoid the confusion with patch set 6 of
    <https://gerrit.libreoffice.org/c/core/+/84765/6> "python3: upgrade to release
    3.7.6", in that it would have reported:
    
    > pyuno/source/module/pyuno.cxx:340:2: error: embedding a directive within macro arguments has undefined behavior [-Werror,-Wembedded-directive]
    > #if PY_VERSION_HEX >= 0x030200f0
    >  ^
    > pyuno/source/module/pyuno.cxx:342:2: error: embedding a directive within macro arguments has undefined behavior [-Werror,-Wembedded-directive]
    > #else
    >  ^
    
    (-Wembedded-directive was introduced with <https://github.com/llvm/llvm-project/
    commit/300237f00c7ddf9c74de96272f2bb571fda61202> "Add a warning flag for
    ext_embedded_directive. gcc considers this undefined" in 2011, so should be
    available in all versions of Clang relevant for us.)
    
    Change-Id: I4d90212aac30ba8715496d8c99cc6de05c6dc99a
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86394
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/solenv/gbuild/platform/com_GCC_defs.mk b/solenv/gbuild/platform/com_GCC_defs.mk
index 5cc24413bb45..9b61d6f3fb7f 100644
--- a/solenv/gbuild/platform/com_GCC_defs.mk
+++ b/solenv/gbuild/platform/com_GCC_defs.mk
@@ -62,6 +62,7 @@ gb_CFLAGS_COMMON := \
 	-Wundef \
 	-Wunreachable-code \
 	$(if $(and $(COM_IS_CLANG),$(or $(findstring icecc,$(CC)),$(findstring icecc,$(CCACHE_PREFIX)))),,-Wunused-macros) \
+	$(if $(COM_IS_CLANG),-Wembedded-directive) \
 	-finput-charset=UTF-8 \
 	-fmessage-length=0 \
 	-fno-common \
@@ -78,6 +79,7 @@ gb_CXXFLAGS_COMMON := \
 	-Wundef \
 	-Wunreachable-code \
 	$(if $(and $(COM_IS_CLANG),$(or $(findstring icecc,$(CC)),$(findstring icecc,$(CCACHE_PREFIX)))),,-Wunused-macros) \
+	$(if $(COM_IS_CLANG),-Wembedded-directive) \
 	-finput-charset=UTF-8 \
 	-fmessage-length=0 \
 	-fno-common \


More information about the Libreoffice-commits mailing list