1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Drop support for Cygwin.

This commit is contained in:
Bartosz Taudul
2021-10-07 23:28:40 +02:00
parent 12f693372a
commit 07bc665d8c
22 changed files with 70 additions and 110 deletions
+1 -1
View File
@@ -16,7 +16,7 @@
#ifdef _MSC_VER
# define stat64 _stat64
#endif
#if defined __CYGWIN__ || defined __APPLE__
#if defined __APPLE__
# define stat64 stat
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#include "TracyMmap.hpp"
#if defined _MSC_VER || defined __MINGW32__ || defined __CYGWIN__
#if defined _WIN32
# include <io.h>
# include <windows.h>
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef __TRACYMMAP_HPP__
#define __TRACYMMAP_HPP__
#if !defined _MSC_VER && !defined __MINGW32__ && !defined __CYGWIN__
#if !defined _WIN32
# include <sys/mman.h>
#else
# include <string.h>