From: Darren Tucker Date: Sun, 25 Apr 2021 04:15:02 +0000 (+1000) Subject: Disable compiler hardening on nbsd4. X-Git-Tag: V_8_7_P1~226 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c805f16b24ea37cc051c6018fcb05defab6e57a;p=thirdparty%2Fopenssh-portable.git Disable compiler hardening on nbsd4. The system compiler supports -fstack-protector-all, but using it will result in an internal compiler error on some files. --- diff --git a/.github/configs b/.github/configs index b24de4dd1..7a1572590 100755 --- a/.github/configs +++ b/.github/configs @@ -108,6 +108,10 @@ case "$config" in esac case "${TARGET_HOST}" in + nbsd4) + # System compiler will ICE on some files with fstack-protector + CONFIGFLAGS="${CONFIGFLAGS} --without-hardening" + ;; sol10|sol11) # sol10 VM is 32bit and the unit tests are slow. # sol11 has 4 test configs so skip unit tests to speed up.