3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-27 19:05:52 +00:00

Fix Cygwin build and document needed packages

This commit is contained in:
Miodrag Milanovic 2018-09-19 10:16:53 +02:00 committed by Jim Lawson
parent 33ac82a5fe
commit 24951ddc77
3 changed files with 14 additions and 1 deletions

View file

@ -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;