build-style/void-cross: always enable libssp
this way we'll be able to provide libssp(-devel) unconditionally inside cross-vpkg-dummy, which should be the right thing to do
This commit is contained in:
parent
5e62bc1052
commit
b2d670be60
1 changed files with 1 additions and 2 deletions
|
@ -372,14 +372,12 @@ _void_cross_build_gcc() {
|
|||
|
||||
local extra_args
|
||||
if [ -f ${wrksrc}/.musl_version ]; then
|
||||
extra_args+=" --enable-libssp"
|
||||
# otherwise glibc hosts get confused and use the gnu impl
|
||||
extra_args+=" --enable-clocale=generic"
|
||||
extra_args+=" --disable-symvers"
|
||||
extra_args+=" --disable-gnu-unique-object"
|
||||
extra_args+=" libat_cv_have_ifunc=no"
|
||||
else
|
||||
extra_args+=" --disable-libssp"
|
||||
extra_args+=" --enable-gnu-unique-object"
|
||||
fi
|
||||
|
||||
|
@ -419,6 +417,7 @@ _void_cross_build_gcc() {
|
|||
--enable-lto \
|
||||
--enable-default-pie \
|
||||
--enable-default-ssp \
|
||||
--enable-libssp \
|
||||
--with-gnu-ld \
|
||||
--with-gnu-as \
|
||||
--with-linker-hash-style=gnu \
|
||||
|
|
Loading…
Reference in a new issue