Shouldn't we have MK_SSP == no on mips instead? That's how it's
supposed to work. If it isn't, perhaps we should set it like that.

Warner

On Mon, Sep 26, 2016 at 9:38 AM, Ruslan Bukin <b...@freebsd.org> wrote:
> Author: br
> Date: Mon Sep 26 15:38:02 2016
> New Revision: 306347
> URL: https://svnweb.freebsd.org/changeset/base/306347
>
> Log:
>   Don't build SSP tests on MIPS as we dont have stack-protector
>   supported on this platform.
>
>   Discussed with:       brooks
>   Sponsored by: DARPA, AFRL
>   Sponsored by: HEIF5
>
> Modified:
>   head/lib/libc/tests/Makefile
>
> Modified: head/lib/libc/tests/Makefile
> ==============================================================================
> --- head/lib/libc/tests/Makefile        Mon Sep 26 15:30:30 2016        
> (r306346)
> +++ head/lib/libc/tests/Makefile        Mon Sep 26 15:38:02 2016        
> (r306347)
> @@ -30,7 +30,8 @@ SUBDIR_DEPEND_tls= tls_dso
>  TESTS_SUBDIRS+=        locale
>  .endif
>
> -.if ${MK_SSP} != "no"
> +.if ${MK_SSP} != "no" && \
> +    ${MACHINE_CPUARCH} != "mips"
>  TESTS_SUBDIRS+=        ssp
>  .endif
>
>
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to