summaryrefslogtreecommitdiff
path: root/sys-apps
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-12-02 09:24:17 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-12-02 09:24:17 +0000
commit48bae10836d7106a12ff1a01185f0531d500c9c2 (patch)
tree5c949efab7b6addf107efa6848cba9af1985d836 /sys-apps
parentc6cf800d47749adeb5bc320496c57889aca1dfec (diff)
sys-apps/openrc : add gcc10 patch
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/openrc/files/openrc-gcc10.patch48
-rw-r--r--sys-apps/openrc/openrc-0.42.1-r5.ebuild1
2 files changed, 49 insertions, 0 deletions
diff --git a/sys-apps/openrc/files/openrc-gcc10.patch b/sys-apps/openrc/files/openrc-gcc10.patch
new file mode 100644
index 00000000..ce2fd102
--- /dev/null
+++ b/sys-apps/openrc/files/openrc-gcc10.patch
@@ -0,0 +1,48 @@
+https://bugs.gentoo.org/705868
+
+From 375ef42393f3dc6edbaa2cb70c79b2366072db38 Mon Sep 17 00:00:00 2001
+From: Sergei Trofimovich <slyfox@gentoo.org>
+Date: Sun, 19 Jan 2020 15:24:20 +0000
+Subject: [PATCH] src/rc/rc-logger.h: fix build failure against gcc-10
+
+On gcc-10 (and gcc-9 -fno-common) build fails as:
+
+```
+cc -L../librc -L../libeinfo -O2 -g -std=c99 -Wall -Wextra -Wimplicit -Wshadow \
+ -Wformat=2 -Wmissing-prototypes -Wmissing-declarations -Wmissing-noreturn \
+ -Wmissing-format-attribute -Wnested-externs -Winline -Wwrite-strings \
+ -Wcast-align -Wcast-qual -Wpointer-arith -Wdeclaration-after-statement \
+ -Wsequence-point -Werror=implicit-function-declaration \
+ -Wl,-rpath=/lib -o openrc rc.o rc-logger.o rc-misc.o rc-plugin.o _usage.o -lutil -lrc -leinfo -Wl,-Bdynamic -ldl
+ld: rc-logger.o:/home/slyfox/dev/git/openrc/src/rc/rc-logger.h:16:
+ multiple definition of `rc_logger_pid'; rc.o:openrc/src/rc/rc-logger.h:16: first defined here
+ld: rc-logger.o:/home/slyfox/dev/git/openrc/src/rc/rc-logger.h:17:
+ multiple definition of `rc_logger_tty'; rc.o:openrc/src/rc/rc-logger.h:17: first defined here
+```
+
+gcc-10 will change the default from -fcommon to fno-common:
+https://gcc.gnu.org/PR85678.
+
+The error also happens if CFLAGS=-fno-common passed explicitly.
+
+This fixes #348.
+---
+ src/rc/rc-logger.h | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+--- a/src/rc/rc-logger.h
++++ b/src/rc/rc-logger.h
+@@ -13,8 +13,8 @@
+ #ifndef RC_LOGGER_H
+ #define RC_LOGGER_H
+
+-pid_t rc_logger_pid;
+-int rc_logger_tty;
++extern pid_t rc_logger_pid;
++extern int rc_logger_tty;
+ extern bool rc_in_logger;
+
+ void rc_logger_open(const char *runlevel);
+--
+2.25.2
+
diff --git a/sys-apps/openrc/openrc-0.42.1-r5.ebuild b/sys-apps/openrc/openrc-0.42.1-r5.ebuild
index 5aa58d77..621ae08e 100644
--- a/sys-apps/openrc/openrc-0.42.1-r5.ebuild
+++ b/sys-apps/openrc/openrc-0.42.1-r5.ebuild
@@ -77,6 +77,7 @@ src_prepare() {
eapply "${FILESDIR}"/${PN}-enable-rclogger.patch
eapply "${FILESDIR}"/${PN}-disable-cgroupsv2.patch
+ eapply "${FILESDIR}"/${PN}-gcc10.patch
}
src_compile() {