Remove MinGW support

The Issue
=======

For a long time now MinGW has been unsupported and unmaintained and at this point,
it looks like something that we should just leave behind and move on.


Why Remove
==========

One of the big motivations for MinGW back in the day is that it was free compared to MSVC which was licensed based.
However, now that this is no longer true we have basically stopped updating the need CMake files.
Along with the CMake files, there are several patches to the extern libs needed to make this work.  For example, see:
https://developer.blender.org/diffusion/B/browse/master/extern/carve/patches/mingw_w64.patch

If we wanted to keep MinGW then we would need to make more custom patches to the external libs and
this is not something our platform maintainers are willing to do.

For example, here is the patches needed to build python: https://github.com/Alexpux/MINGW-packages/tree/master/mingw-w64-python3

Fixes T51301

Differential Revision: https://developer.blender.org/D2648
This commit is contained in:
Aaron Carlisle
2017-05-27 15:34:55 -04:00
parent 275e2fb0ff
commit 9f044cb422
54 changed files with 105 additions and 725 deletions

View File

@@ -29,7 +29,7 @@
#define CONTAINS_INDEX
#define GRID_DIMENSION 20
#if defined(_WIN32) && !defined(__MINGW32__) && !(_MSC_VER >= 1900)
#if defined(_WIN32) && !(_MSC_VER >= 1900)
#define isnan(n) _isnan(n)
#define LONG __int64
#define int64_t __int64

View File

@@ -28,7 +28,7 @@
#include <cstdio>
#include <float.h>
#if defined(_WIN32) && !defined(__MINGW32__)
#if defined(_WIN32)
#define isnan(n) _isnan(n)
#endif