diff options
author | whitequark <whitequark@whitequark.org> | 2020-06-22 00:10:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 00:10:25 +0000 |
commit | 97f3a7fc30b94165c4e2f3c4c741add850b7b675 (patch) | |
tree | 27995d895f4ba857fea69328ba1ae827556d8490 /libs/minisat/00_PATCH_wasm.patch | |
parent | 692ec5fc9dc3e86d1e29866123a40c31c7a73e29 (diff) | |
parent | 21d44ebec7dbdd55709dd52f6d940ce8c55cb423 (diff) | |
download | yosys-97f3a7fc30b94165c4e2f3c4c741add850b7b675.tar.gz yosys-97f3a7fc30b94165c4e2f3c4c741add850b7b675.tar.bz2 yosys-97f3a7fc30b94165c4e2f3c4c741add850b7b675.zip |
Merge pull request #2181 from whitequark/minisat-wasm-signal
minisat: add missing include guard for WASI
Diffstat (limited to 'libs/minisat/00_PATCH_wasm.patch')
-rw-r--r-- | libs/minisat/00_PATCH_wasm.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libs/minisat/00_PATCH_wasm.patch b/libs/minisat/00_PATCH_wasm.patch index 0bcff7d77..384930047 100644 --- a/libs/minisat/00_PATCH_wasm.patch +++ b/libs/minisat/00_PATCH_wasm.patch @@ -32,3 +32,15 @@ #endif +#endif } +--- System.cc ++++ System.cc +@@ -24,7 +24,9 @@ + OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + **************************************************************************************************/ + ++#if !defined(__wasm) + #include <signal.h> ++#endif + #include <stdio.h> + + #include "System.h" |