[libcxx-commits] [PATCH] D90072: [libc++] Add a libc++ configuration that does not support localization
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Nov 2 15:33:23 PST 2020
ldionne added inline comments.
================
Comment at: libcxx/test/libcxx/double_include.sh.cpp:152
+# include <streambuf>
+# include <strstream>
+# if __cplusplus >= 201103L
----------------
xiaoxiang781216 wrote:
> I would expect all stream/regex still support. only the encoding/format conversion or wide char version has to be skipped.
Good luck pulling those out of the library. If you're willing to spend the time and make that work, I'll be more than happy to expand the no-localization mode to include some of `<iostream>`. Just make sure it doesn't become too complex.
Also note that this is primarily aimed at people doing embedded development. I would expect most of them probably don't care about `<iostream>` at all.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D90072/new/
https://reviews.llvm.org/D90072
More information about the libcxx-commits
mailing list