On Thu, Jun 7, 2018 at 11:53 AM, Dylan Baker <dy...@pnwbakers.com> wrote:
> ---
>  meson.build       | 30 ++++++++++++++++++++++++++----
>  meson_options.txt |  7 +++++++
>  2 files changed, 33 insertions(+), 4 deletions(-)
>
> diff --git a/meson.build b/meson.build
> index 0171328bcd7..f6fe141056a 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -601,13 +601,33 @@ if with_gallium_st_nine
>    endif
>  endif
>
> +if get_option('altivec') != 'false'
> +  if host_machine.cpu_family() == 'ppc64le'
> +    if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.8')

cc isn't defined until later, so this won't work as is. I assume the
thing to do is move this down.
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to