From: nsz Date: Fri, 23 Oct 2015 19:44:24 +0000 (+0000) Subject: [rs6000] Enable secureplt by default on musl X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5b0ce4f9ccd9788cad25941e8dd79f24cc8cee5;p=thirdparty%2Fgcc.git [rs6000] Enable secureplt by default on musl * config.gcc (enable_secureplt): Add *-linux*-musl*. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229268 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 29d1ffab0fc3..723401925866 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-10-23 Gregor Richards + Szabolcs Nagy + + * config.gcc (enable_secureplt): Add *-linux*-musl*. + 2015-10-23 Jeff Law PR tree-optimization/67830 diff --git a/gcc/config.gcc b/gcc/config.gcc index 33d2cb83bcaa..c0b5c9e1a0f0 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -2443,6 +2443,10 @@ powerpc*-*-linux*) powerpc*-*-linux*paired*) tm_file="${tm_file} rs6000/750cl.h" ;; esac + case ${target} in + *-linux*-musl*) + enable_secureplt=yes ;; + esac if test x${enable_secureplt} = xyes; then tm_file="rs6000/secureplt.h ${tm_file}" fi