Add a missing comment.

Signed-off-by: Takeshi Yoneda <takeshi@tetrate.io>
This commit is contained in:
Takeshi Yoneda 2021-06-15 09:32:48 +09:00
parent 1795472eb7
commit dc7d354ee4

View File

@ -141,6 +141,7 @@ pub fn buildLibCXX(comp: *Compilation) !void {
if (target.os.tag == .wasi) {
// WASI doesn't support thread yet.
try cflags.append("-D_LIBCPP_HAS_NO_THREADS");
// Also, exception is not supported yet.
try cflags.append("-fno-exceptions");
}