[PATCH] D34018: Support __float128 on NetBSD libstdc++ x86/x86_64
Kamil Rytarowski via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat Jun 17 15:14:57 PDT 2017
krytarowski added a comment.
We can change NetBSD base libstdc++ in `/usr/include/g++/bits/*/c++config.h` from
/* Define if __float128 is supported on this host. */
#define _GLIBCXX_USE_FLOAT128 1
to:
#if !defined(__clang__)
/* Define if __float128 is supported on this host. */
#define _GLIBCXX_USE_FLOAT128 1
#endif
Repository:
rL LLVM
https://reviews.llvm.org/D34018
More information about the cfe-commits
mailing list