From f8fa80bed10eacdc4269f6d8a08985a6cf6df1dc Mon Sep 17 00:00:00 2001 From: Sam James Date: Sun, 10 Sep 2023 15:16:03 +0100 Subject: [PATCH] sys-libs/llvm-libunwind: avoid spurious assertions with USE=-debug Respect upstream build type assumptions where they do: * -DLIBUNWIND_ENABLE_ASSERTIONS=ON => -DCMAKE_BUILD_TYPE=DEBUG => -UNDEBUG -DCMAKE_BUILD_TYPE!=debug => -DNDEBUG * -DLIBUNWIND_ENABLE_ASSERTIONS=OFF => -UNDEBUG See also https://github.com/llvm/llvm-project/issues/86#issuecomment-1649668826. Bug: https://github.com/libunwind/libunwind/issues/138 Bug: https://github.com/llvm/llvm-project/issues/86 Bug: https://github.com/llvm/llvm-project/issues/55584 Closes: https://bugs.gentoo.org/910436 Signed-off-by: Sam James --- ...ind-16.0.6.ebuild => llvm-libunwind-16.0.6-r1.ebuild} | 9 +++++++++ .../llvm-libunwind/llvm-libunwind-17.0.0.9999.ebuild | 9 +++++++++ ....0_rc4.ebuild => llvm-libunwind-17.0.0_rc4-r1.ebuild} | 9 +++++++++ .../llvm-libunwind/llvm-libunwind-18.0.0.9999.ebuild | 9 +++++++++ ...build => llvm-libunwind-18.0.0_pre20230906-r1.ebuild} | 9 +++++++++ 5 files changed, 45 insertions(+) rename sys-libs/llvm-libunwind/{llvm-libunwind-16.0.6.ebuild => llvm-libunwind-16.0.6-r1.ebuild} (88%) rename sys-libs/llvm-libunwind/{llvm-libunwind-17.0.0_rc4.ebuild => llvm-libunwind-17.0.0_rc4-r1.ebuild} (88%) rename sys-libs/llvm-libunwind/{llvm-libunwind-18.0.0_pre20230906.ebuild => llvm-libunwind-18.0.0_pre20230906-r1.ebuild} (88%) diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.6.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-16.0.6-r1.ebuild similarity index 88% rename from sys-libs/llvm-libunwind/llvm-libunwind-16.0.6.ebuild rename to sys-libs/llvm-libunwind/llvm-libunwind-16.0.6-r1.ebuild index 9d53bcd51939d..18d5066e295f6 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.6.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-16.0.6-r1.ebuild @@ -67,6 +67,15 @@ multilib_src_configure() { local use_compiler_rt=OFF [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON + # Respect upstream build type assumptions (bug #910436) where they do: + # -DLIBUNWIND_ENABLE_ASSERTIONS=ON => + # -DCMAKE_BUILD_TYPE=DEBUG => -UNDEBUG + # -DCMAKE_BUILD_TYPE!=debug => -DNDEBUG + # -DLIBUNWIND_ENABLE_ASSERTIONS=OFF => + # -UNDEBUG + # See also https://github.com/llvm/llvm-project/issues/86#issuecomment-1649668826. + use debug || append-cppflags -DNDEBUG + local mycmakeargs=( -DCMAKE_CXX_COMPILER_TARGET="${CHOST}" -DPython3_EXECUTABLE="${PYTHON}" diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-17.0.0.9999.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-17.0.0.9999.ebuild index 43f8868fc308a..94ec81df14521 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-17.0.0.9999.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-17.0.0.9999.ebuild @@ -67,6 +67,15 @@ multilib_src_configure() { local use_compiler_rt=OFF [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON + # Respect upstream build type assumptions (bug #910436) where they do: + # -DLIBUNWIND_ENABLE_ASSERTIONS=ON => + # -DCMAKE_BUILD_TYPE=DEBUG => -UNDEBUG + # -DCMAKE_BUILD_TYPE!=debug => -DNDEBUG + # -DLIBUNWIND_ENABLE_ASSERTIONS=OFF => + # -UNDEBUG + # See also https://github.com/llvm/llvm-project/issues/86#issuecomment-1649668826. + use debug || append-cppflags -DNDEBUG + local mycmakeargs=( -DCMAKE_CXX_COMPILER_TARGET="${CHOST}" -DPython3_EXECUTABLE="${PYTHON}" diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-17.0.0_rc4.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-17.0.0_rc4-r1.ebuild similarity index 88% rename from sys-libs/llvm-libunwind/llvm-libunwind-17.0.0_rc4.ebuild rename to sys-libs/llvm-libunwind/llvm-libunwind-17.0.0_rc4-r1.ebuild index 43f8868fc308a..94ec81df14521 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-17.0.0_rc4.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-17.0.0_rc4-r1.ebuild @@ -67,6 +67,15 @@ multilib_src_configure() { local use_compiler_rt=OFF [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON + # Respect upstream build type assumptions (bug #910436) where they do: + # -DLIBUNWIND_ENABLE_ASSERTIONS=ON => + # -DCMAKE_BUILD_TYPE=DEBUG => -UNDEBUG + # -DCMAKE_BUILD_TYPE!=debug => -DNDEBUG + # -DLIBUNWIND_ENABLE_ASSERTIONS=OFF => + # -UNDEBUG + # See also https://github.com/llvm/llvm-project/issues/86#issuecomment-1649668826. + use debug || append-cppflags -DNDEBUG + local mycmakeargs=( -DCMAKE_CXX_COMPILER_TARGET="${CHOST}" -DPython3_EXECUTABLE="${PYTHON}" diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-18.0.0.9999.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-18.0.0.9999.ebuild index 43f8868fc308a..94ec81df14521 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-18.0.0.9999.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-18.0.0.9999.ebuild @@ -67,6 +67,15 @@ multilib_src_configure() { local use_compiler_rt=OFF [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON + # Respect upstream build type assumptions (bug #910436) where they do: + # -DLIBUNWIND_ENABLE_ASSERTIONS=ON => + # -DCMAKE_BUILD_TYPE=DEBUG => -UNDEBUG + # -DCMAKE_BUILD_TYPE!=debug => -DNDEBUG + # -DLIBUNWIND_ENABLE_ASSERTIONS=OFF => + # -UNDEBUG + # See also https://github.com/llvm/llvm-project/issues/86#issuecomment-1649668826. + use debug || append-cppflags -DNDEBUG + local mycmakeargs=( -DCMAKE_CXX_COMPILER_TARGET="${CHOST}" -DPython3_EXECUTABLE="${PYTHON}" diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-18.0.0_pre20230906.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-18.0.0_pre20230906-r1.ebuild similarity index 88% rename from sys-libs/llvm-libunwind/llvm-libunwind-18.0.0_pre20230906.ebuild rename to sys-libs/llvm-libunwind/llvm-libunwind-18.0.0_pre20230906-r1.ebuild index 43f8868fc308a..94ec81df14521 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-18.0.0_pre20230906.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-18.0.0_pre20230906-r1.ebuild @@ -67,6 +67,15 @@ multilib_src_configure() { local use_compiler_rt=OFF [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON + # Respect upstream build type assumptions (bug #910436) where they do: + # -DLIBUNWIND_ENABLE_ASSERTIONS=ON => + # -DCMAKE_BUILD_TYPE=DEBUG => -UNDEBUG + # -DCMAKE_BUILD_TYPE!=debug => -DNDEBUG + # -DLIBUNWIND_ENABLE_ASSERTIONS=OFF => + # -UNDEBUG + # See also https://github.com/llvm/llvm-project/issues/86#issuecomment-1649668826. + use debug || append-cppflags -DNDEBUG + local mycmakeargs=( -DCMAKE_CXX_COMPILER_TARGET="${CHOST}" -DPython3_EXECUTABLE="${PYTHON}"