Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions config.def.h
Original file line number Diff line number Diff line change
Expand Up @@ -1849,6 +1849,9 @@
#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows/x86_64/latest/"
#elif defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_IX86) || defined(_M_IA64)
#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows/x86/latest/"
#elif defined(__aarch64__) || defined(_M_ARM64)
/* No official MinGW/clang ARM64 buildbot yet – use empty default */
#define DEFAULT_BUILDBOT_SERVER_URL ""
#endif
#endif
#elif defined(__linux__)
Expand Down
7 changes: 7 additions & 0 deletions deps/mbedtls/timing.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@
#include <windows.h>
#include <winbase.h>

#if defined(__MINGW32__) || defined(__MINGW64__)
/* MSYS2/MinGW: provide struct timeval + gettimeofday() for the
* fallback timing implementation used when HAVE_HARDCLOCK
* isn't defined (e.g., on aarch64-w64-mingw32 / clangarm64). */
#include <sys/time.h>
#endif

struct _hr_time
{
LARGE_INTEGER start;
Expand Down