diff --git a/common/nextpnr.cc b/common/nextpnr.cc index 1229a7df..f8914ea5 100644 --- a/common/nextpnr.cc +++ b/common/nextpnr.cc @@ -18,6 +18,10 @@ */ #if defined(__wasm) +#include +#include +#include "log.h" + extern "C" { // FIXME: WASI does not currently support exceptions. void *__cxa_allocate_exception(size_t thrown_size) throw() { return malloc(thrown_size); } diff --git a/common/nextpnr_assertions.h b/common/nextpnr_assertions.h index 85a724c6..e1a30458 100644 --- a/common/nextpnr_assertions.h +++ b/common/nextpnr_assertions.h @@ -22,6 +22,7 @@ #define NEXTPNR_ASSERTIONS_H #include +#include #include "nextpnr_namespaces.h"