diff options
author | 2024-03-17 15:43:52 -0400 | |
---|---|---|
committer | 2024-03-18 05:29:46 +0000 | |
commit | 3ae26f26612e7947f38527c297c30ef429518a52 (patch) | |
tree | d0ededa710ac07919d028f08a423d1d3dd3b3d31 | |
parent | media-libs/zmusic: mark as LTO-unsafe (diff) | |
download | gentoo-3ae26f26612e7947f38527c297c30ef429518a52.tar.gz gentoo-3ae26f26612e7947f38527c297c30ef429518a52.tar.bz2 gentoo-3ae26f26612e7947f38527c297c30ef429518a52.zip |
app-misc/logiops: mark as LTO-unsafe
Closes: https://bugs.gentoo.org/924426
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | app-misc/logiops/logiops-0.3.3.ebuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/app-misc/logiops/logiops-0.3.3.ebuild b/app-misc/logiops/logiops-0.3.3.ebuild index 7885d2fc301f..e47b12b20ed6 100644 --- a/app-misc/logiops/logiops-0.3.3.ebuild +++ b/app-misc/logiops/logiops-0.3.3.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 MY_P="${PN}-v${PV}" -inherit cmake linux-info +inherit cmake flag-o-matic linux-info DESCRIPTION="An unofficial userspace driver for HID++ Logitech devices" HOMEPAGE="https://github.com/PixlOne/logiops" @@ -43,6 +43,11 @@ pkg_pretend() { } src_configure() { + # -Werror=odr + # https://bugs.gentoo.org/924426 + # https://github.com/PixlOne/logiops/issues/445 + filter-lto + local mycmakeargs=( -DBUILD_SHARED="ON" -DBUILD_STATIC="OFF" |