You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 10, 2023. It is now read-only.
Hi! If to use mingw32, then a error:
ccronexpr.cpp:83: error: undefined reference to `_mkgmtime'
Maybe can use this for UTC time? #ifdef _WIN32 time_t cron_mktime(struct tm* tm) { return mktime(tm) - timezone; }
The text was updated successfully, but these errors were encountered:
I will happily accept a PR for mingw32, if you submit one, assuming that time.h logic for MSVC and Linux GCC will stay unchanged. time.h API is really hairy, afraid to change current variant that works there.
C:\Qt\Tools\mingw530_32\bin>gcc.exe --version
gcc.exe (i686-posix-dwarf-rev0, Built by MinGW-W64 project) 5.3.0
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Hi! If to use mingw32, then a error:
ccronexpr.cpp:83: error: undefined reference to `_mkgmtime'
Maybe can use this for UTC time?
#ifdef _WIN32 time_t cron_mktime(struct tm* tm) { return mktime(tm) - timezone; }
The text was updated successfully, but these errors were encountered: