[libcxx-commits] [PATCH] D130507: [libc++] Generalize the customizeable assertion handler
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jul 28 07:27:47 PDT 2022
ldionne marked 2 inline comments as done.
ldionne added inline comments.
================
Comment at: libcxx/src/assert.cpp:53
+ vasprintf(&buffer, format, list);
+ android_set_abort_message(buffer);
+
----------------
thakis wrote:
> thakis wrote:
> > This requires API level 21. We still build for older Api levels in some configs. Can this use something that works in older Api levels?
> >
> > (Also, this looks a bit unrelated to making the handler vararg?)
> Ping?
Thanks for the heads up, see D130708.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D130507/new/
https://reviews.llvm.org/D130507
More information about the libcxx-commits
mailing list