Move libssp into musl out of GCC

The motivations for this are complicated, but on musl systems, musl
will use its own libssp implementation, so GCC's libssp is not required.

Not to mention that GCC's libssp implementation is questionable at best.

This is the approach taken by the two major musl distributions - Alpine
Linux and Void Linux.
This commit is contained in:
fosslinux 2023-04-17 22:18:45 +10:00
parent 906b6b8f19
commit 8ae911162a
4 changed files with 20 additions and 3 deletions

View file

@ -95,5 +95,6 @@ src_configure() {
--disable-sjlj-exceptions \
--disable-multilib \
--enable-threads=posix \
--disable-libsanitizer
--disable-libsanitizer \
--disable-libssp
}