Commit dc7d354ee4

Takeshi Yoneda <takeshi@tetrate.io>
2021-06-15 02:32:48
Add a missing comment.
Signed-off-by: Takeshi Yoneda <takeshi@tetrate.io>
1 parent 1795472
Changed files (1)
src/libcxx.zig
@@ -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");
         }