From 554b3dc27cef6db59f8a612c1e2e3c653f70e392 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 13 Nov 2023 16:26:20 +0000 Subject: gentoo auto-resync : 13:11:2023 - 16:26:20 --- .../files/zerotier-1.12.2-noexecstack.patch | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 net-misc/zerotier/files/zerotier-1.12.2-noexecstack.patch (limited to 'net-misc/zerotier/files') diff --git a/net-misc/zerotier/files/zerotier-1.12.2-noexecstack.patch b/net-misc/zerotier/files/zerotier-1.12.2-noexecstack.patch new file mode 100644 index 000000000000..2888577d13ba --- /dev/null +++ b/net-misc/zerotier/files/zerotier-1.12.2-noexecstack.patch @@ -0,0 +1,24 @@ +https://github.com/zerotier/ZeroTierOne/pull/2161 + +From e171384c19bb0c0dfe0368e4f249dd6a30d33748 Mon Sep 17 00:00:00 2001 +From: Alfred Wingate +Date: Sun, 29 Oct 2023 13:48:07 +0200 +Subject: [PATCH] Append noexecstack to linker flags instead of assembler flags + +* Better compatibility with LLVM toolchain where clang -c doesn't + support the flag, but the linker does. LLD already defaults to + noexecstack, but adding it in the linker phase will avoid errors about + unsupported options. + +Signed-off-by: Alfred Wingate +--- a/make-linux.mk ++++ b/make-linux.mk +@@ -358,7 +358,7 @@ override CFLAGS+=-fPIC -fPIE + override CXXFLAGS+=-fPIC -fPIE + + # Non-executable stack +-override ASFLAGS+=--noexecstack ++override LDFLAGS+=-Wl,-z,noexecstack + + .PHONY: all + all: one -- cgit v1.2.3