diff options
author | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-03-18 13:20:51 -0700 |
---|---|---|
committer | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-03-18 13:20:51 -0700 |
commit | cc4d2d1b1d7423faa7e9fe09ecea6285dad9b924 (patch) | |
tree | 7d7c3f25e933869ef3db793dbe5e69b1ade8c91a | |
parent | a751e0d9081477e33c620b5224ccd2026f2fa0cf (diff) | |
download | nextpnr-tests-cc4d2d1b1d7423faa7e9fe09ecea6285dad9b924.tar.gz nextpnr-tests-cc4d2d1b1d7423faa7e9fe09ecea6285dad9b924.tar.bz2 nextpnr-tests-cc4d2d1b1d7423faa7e9fe09ecea6285dad9b924.zip |
Move <tcl.h> after other headers, because Tcl messes with defines.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
-rw-r--r-- | fpga_interchange/xdc.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fpga_interchange/xdc.cc b/fpga_interchange/xdc.cc index 0ae147d..94662d2 100644 --- a/fpga_interchange/xdc.cc +++ b/fpga_interchange/xdc.cc @@ -22,6 +22,8 @@ #include "nextpnr.h" #include "xdc.h" +#include <tcl.h> + USING_NEXTPNR_NAMESPACE class XdcTest : public ::testing::Test |