aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/xdc.cc
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-03-22 09:30:38 +0000
committerGitHub <noreply@github.com>2021-03-22 09:30:38 +0000
commit68ca923bfefde24fa2b7cbc8c6f9817f1d93e1e5 (patch)
treebad29dce65cf448e36704e6d7b1773d8dfd573a2 /fpga_interchange/xdc.cc
parentf52b5229642cdb54d61b54f5ab9a7478a119298e (diff)
parent22c6754bcd08f66b6f8e87a58dc09ed260c72c25 (diff)
downloadnextpnr-68ca923bfefde24fa2b7cbc8c6f9817f1d93e1e5.tar.gz
nextpnr-68ca923bfefde24fa2b7cbc8c6f9817f1d93e1e5.tar.bz2
nextpnr-68ca923bfefde24fa2b7cbc8c6f9817f1d93e1e5.zip
Merge pull request #635 from litghost/refactor_headers
Refactor header structures in FPGA interchange Arch.
Diffstat (limited to 'fpga_interchange/xdc.cc')
-rw-r--r--fpga_interchange/xdc.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/fpga_interchange/xdc.cc b/fpga_interchange/xdc.cc
index 584a1777..6e22ce8b 100644
--- a/fpga_interchange/xdc.cc
+++ b/fpga_interchange/xdc.cc
@@ -19,9 +19,15 @@
*/
#include "xdc.h"
+
#include <string>
+
+#include "context.h"
#include "log.h"
-#include "nextpnr.h"
+
+// Include tcl.h late because it messed with #define's and lets them leave the
+// scope of the header.
+#include <tcl.h>
NEXTPNR_NAMESPACE_BEGIN