CI testing in Cygwin 64-bit now uses CMake and runs external tests (#2037)

This commit is contained in:
Rangi
2026-07-30 12:59:53 -04:00
committed by GitHub
parent 4e87f61656
commit 4384223951
2 changed files with 47 additions and 11 deletions
+2 -2
View File
@@ -61,8 +61,8 @@
#define ftell _ftelli64
#endif
// MingGW and Cygwin need POSIX functions which are not standard C explicitly enabled,
#if defined(__MINGW32__) || defined(__CYGWIN__)
// MingGW and Cygwin may need POSIX functions which are not standard C explicitly enabled
#if (defined(__MINGW32__) || defined(__CYGWIN__)) && !defined(_POSIX_C_SOURCE)
#define _POSIX_C_SOURCE 200809L
#endif