summaryrefslogtreecommitdiff
path: root/kernel/yosys.cc
diff options
context:
space:
mode:
authorWilliam Speirs <bill.speirs@gmail.com>2014-10-16 12:06:54 -0400
committerClifford Wolf <clifford@clifford.at>2014-10-17 11:41:36 +0200
commit31267a1ae8d670c4b8749fc55b07c01d9285a488 (patch)
tree678fb6b416aef122cbb9b9affd5f9c702dc2ce03 /kernel/yosys.cc
parentfda52f05f277720e12aadb4716415ec9bff616a5 (diff)
Header changes so it will compile on VS
Diffstat (limited to 'kernel/yosys.cc')
-rw-r--r--kernel/yosys.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/kernel/yosys.cc b/kernel/yosys.cc
index 1ce7b520..9c1cb58f 100644
--- a/kernel/yosys.cc
+++ b/kernel/yosys.cc
@@ -33,17 +33,21 @@
#elif defined(__APPLE__)
# include <mach-o/dyld.h>
#else
+# include <unistd.h>
+# include <dirent.h>
# include <sys/types.h>
# include <sys/stat.h>
#endif
-#include <unistd.h>
#include <limits.h>
-#include <dirent.h>
#include <errno.h>
YOSYS_NAMESPACE_BEGIN
+#ifdef _WIN32
+const char *yosys_version_str = "Windows";
+#endif
+
int autoidx = 1;
RTLIL::Design *yosys_design = NULL;
@@ -325,10 +329,10 @@ void yosys_shutdown()
#ifdef YOSYS_ENABLE_PLUGINS
for (auto &it : loaded_plugins)
dlclose(it.second);
-#endif
loaded_plugins.clear();
loaded_plugin_aliases.clear();
+#endif
}
RTLIL::IdString new_id(std::string file, int line, std::string func)