aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorCatherine <whitequark@whitequark.org>2023-02-23 02:32:19 +0000
committerCatherine <whitequark@whitequark.org>2023-02-23 02:32:19 +0000
commit4b4f4a7da11f5fb105b570741184e4fd559df5b9 (patch)
treef1ccafcb964e709cc4a83529b6eaa9e662674bee /common
parent0c4e0d4312c94eaf3ef17d1d9a361f727def6aac (diff)
downloadnextpnr-4b4f4a7da11f5fb105b570741184e4fd559df5b9.tar.gz
nextpnr-4b4f4a7da11f5fb105b570741184e4fd559df5b9.tar.bz2
nextpnr-4b4f4a7da11f5fb105b570741184e4fd559df5b9.zip
common: add missing includes for libc++.
Diffstat (limited to 'common')
-rw-r--r--common/kernel/archcheck.cc2
-rw-r--r--common/kernel/embed.cc1
2 files changed, 3 insertions, 0 deletions
diff --git a/common/kernel/archcheck.cc b/common/kernel/archcheck.cc
index 23ec7aee..06282f43 100644
--- a/common/kernel/archcheck.cc
+++ b/common/kernel/archcheck.cc
@@ -17,6 +17,8 @@
*
*/
+#include <list>
+
#include "log.h"
#include "nextpnr.h"
diff --git a/common/kernel/embed.cc b/common/kernel/embed.cc
index 70bbc6fb..6beb157b 100644
--- a/common/kernel/embed.cc
+++ b/common/kernel/embed.cc
@@ -1,3 +1,4 @@
+#include <map>
#if defined(WIN32)
#include <windows.h>
#endif