aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-09-19 10:16:53 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-09-19 10:16:53 +0200
commitc5e9034834ce0bcc6f6c611bc3ad3d244a32732f (patch)
tree684c8d844ad5d0d106b773c9d1e10e99f55cb6a7 /kernel
parent592a82c0ad8beb6de023aa2a131aab6472f949e8 (diff)
downloadyosys-c5e9034834ce0bcc6f6c611bc3ad3d244a32732f.tar.gz
yosys-c5e9034834ce0bcc6f6c611bc3ad3d244a32732f.tar.bz2
yosys-c5e9034834ce0bcc6f6c611bc3ad3d244a32732f.zip
Fix Cygwin build and document needed packages
Diffstat (limited to 'kernel')
-rw-r--r--kernel/yosys.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/yosys.cc b/kernel/yosys.cc
index 264b1f63d..ad032899c 100644
--- a/kernel/yosys.cc
+++ b/kernel/yosys.cc
@@ -166,7 +166,7 @@ std::string vstringf(const char *fmt, va_list ap)
std::string string;
char *str = NULL;
-#ifdef _WIN32
+#if defined(_WIN32 )|| defined(__CYGWIN__)
int sz = 64, rc;
while (1) {
va_list apc;