mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-21 20:46:14 +00:00
8d2ab0fac6
Release notes: https://gcc.gnu.org/gcc-12/changes.html Refresh patches: - 230-musl_libssp.patch - 910-mbsd_multi.patch - 920-specs_nonfatal_getenv.patch - 970-macos_arm64-building-fix.patch 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
|
|
@@ -987,7 +987,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
|