mirror of
https://github.com/openwrt/openwrt.git
synced 2025-12-21 17:04:28 +04:00
Release Notes: https://gcc.gnu.org/gcc-13/changes.html All patches are automatically refreshed. Build-tested on: ath79/generic(MIPS) ipq40xx/generic(ARMv7) mediatek/filogic(ARMv8) Signed-off-by: Shiji Yang <yangshiji66@outlook.com> Link: https://github.com/openwrt/openwrt/pull/19089 Signed-off-by: Nick Hainke <vincent@systemli.org>
14 lines
413 B
Diff
14 lines
413 B
Diff
--- a/gcc/gcc.cc
|
|
+++ b/gcc/gcc.cc
|
|
@@ -975,7 +975,9 @@ proper position among the other output f
|
|
#endif
|
|
|
|
#ifndef LINK_SSP_SPEC
|
|
-#ifdef TARGET_LIBC_PROVIDES_SSP
|
|
+#if DEFAULT_LIBC == LIBC_MUSL
|
|
+#define LINK_SSP_SPEC "-lssp_nonshared"
|
|
+#elif defined(TARGET_LIBC_PROVIDES_SSP)
|
|
#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
|
|
"|fstack-protector-strong|fstack-protector-explicit:}"
|
|
#else
|