diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-10-15 02:43:50 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-10-15 02:43:50 +0200 |
commit | 3445a933a5f2c23b697b96948f44fb1b2012dbdb (patch) | |
tree | e9cf94a6ce19cb962108ac28718e8c14dc99b008 /kernel | |
parent | 8cea352a6aafa80d397d8a6a7d195c1378dcb324 (diff) | |
download | yosys-3445a933a5f2c23b697b96948f44fb1b2012dbdb.tar.gz yosys-3445a933a5f2c23b697b96948f44fb1b2012dbdb.tar.bz2 yosys-3445a933a5f2c23b697b96948f44fb1b2012dbdb.zip |
Fixed MXE build
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/log.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/log.cc b/kernel/log.cc index 2cae6a636..19eb38c73 100644 --- a/kernel/log.cc +++ b/kernel/log.cc @@ -21,7 +21,7 @@ #include "libs/sha1/sha1.h" #include "backends/ilang/ilang_backend.h" -#ifndef _WIN32 +#if !defined(_WIN32) || defined(__MINGW32__) # include <sys/time.h> #endif @@ -51,7 +51,7 @@ static struct timeval initial_tv = { 0, 0 }; static bool next_print_log = false; static int log_newline_count = 0; -#ifdef _WIN32 +#if defined(_WIN32) && !defined(__MINGW32__) // this will get time information and return it in timeval, simulating gettimeofday() int gettimeofday(struct timeval *tv, struct timezone *tz) { |