Add support for MinGW cross compiling

This commit is contained in:
2016-12-23 03:41:11 -06:00
parent 1b2f87197b
commit 666f455cfd
7 changed files with 46 additions and 6 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef unsigned uint_t;
#if defined(_MSC_VER) || defined(__APPLE__)
#if defined(_WIN32) || defined(__APPLE__)
typedef long long int64_t;
typedef unsigned long long uint64_t;
#else