3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 09:05:32 +00:00

Fix Cygwin build and document needed packages

This commit is contained in:
Miodrag Milanovic 2018-09-19 10:16:53 +02:00
parent 592a82c0ad
commit c5e9034834
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;