forked from Openwrt-EcoNet/openwrt
Remove upstreamed patches: - 020-MIPS-Include-missing-mips16.S-in-libgcc-lib1funcs.S.patch - 021-Reuse-scratch-registers-generated-by-LRA.patch All other patches are automatically refreshed. Signed-off-by: Shiji Yang <yangshiji66@outlook.com> Link: https://github.com/openwrt/openwrt/pull/18891 Signed-off-by: Robert Marko <robimarko@gmail.com>
14 lines
413 B
Diff
14 lines
413 B
Diff
--- a/gcc/gcc.cc
|
|
+++ b/gcc/gcc.cc
|
|
@@ -989,7 +989,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
|