[Mesa-dev] [PATCH] clover: Fix building with latest llvm
Francisco Jerez
currojerez at riseup.net
Sat Mar 1 16:35:29 PST 2014
Bruno Jiménez <brunojimen at gmail.com> writes:
> Recently, llvm has changed to use c++11, so we also should use it
> ---
> src/gallium/state_trackers/clover/Makefile.am | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/gallium/state_trackers/clover/Makefile.am b/src/gallium/state_trackers/clover/Makefile.am
> index ece2b38..cc9311c 100644
> --- a/src/gallium/state_trackers/clover/Makefile.am
> +++ b/src/gallium/state_trackers/clover/Makefile.am
> @@ -37,7 +37,7 @@ libcltgsi_la_SOURCES = \
> tgsi/compiler.cpp
>
> libclllvm_la_CXXFLAGS = \
> - -std=c++98 \
> + -std=c++11 \
I think this will break earlier versions of LLVM in subtle ways --
mainly because the C++98 and C++11 standard libraries are not guaranteed
to be binary compatible with each other. We should probably use
LLVM_CXXFLAGS to detect which -std flag LLVM was built with and make
sure we use the same.
> $(VISIBILITY_CXXFLAGS) \
> $(LLVM_CPPFLAGS) \
> $(DEFINES) \
> @@ -49,7 +49,7 @@ libclllvm_la_SOURCES = \
> llvm/invocation.cpp
>
> libclover_la_CXXFLAGS = \
> - -std=c++0x \
> + -std=c++11 \
This looks good to me (though it's not strictly related to fixing LLVM).
Thanks.
> $(VISIBILITY_CXXFLAGS)
>
> libclover_la_LIBADD = \
> --
> 1.9.0
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 229 bytes
Desc: not available
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20140302/d6e45862/attachment.pgp>
More information about the mesa-dev
mailing list