From 87b7a019472770f08d49cf3b558867dc76ea74eb Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 11 Sep 2019 19:58:01 -0700 Subject: [PATCH] Mention that setjmp/longjmp are not yet supported. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 616b6ad..3c767dc 100644 --- a/README.md +++ b/README.md @@ -35,8 +35,10 @@ in the install directory. ## Notable Limitations This repository does not yet support C++ exceptions. C++ code is -supported only with -fno-exceptions for now. Work on support for -[exception handling] is underway at the language level. +supported only with -fno-exceptions for now. Similarly, there is not +yet support for setjmp/longjmp. Work on support for [exception handling] +s underway at the language level which will support both of these +features. [exception handling]: https://github.com/WebAssembly/exception-handling/