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
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
/*
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
*/
|
|
|
|
#ifndef __BLI_ALLOCA_H__
|
|
#define __BLI_ALLOCA_H__
|
|
|
|
/** \file BLI_alloca.h
|
|
* \ingroup bli
|
|
*
|
|
* Defines alloca and utility macro BLI_array_alloca
|
|
*/
|
|
|
|
/* BLI_array_alloca / alloca */
|
|
|
|
#if defined(__GNUC__) || defined(__clang__)
|
|
#if defined(__cplusplus) && (__cplusplus > 199711L)
|
|
#define BLI_array_alloca(arr, realsize) \
|
|
(decltype(arr))alloca(sizeof(*arr) * (realsize))
|
|
#else
|
|
#define BLI_array_alloca(arr, realsize) \
|
|
(typeof(arr))alloca(sizeof(*arr) * (realsize))
|
|
#endif
|
|
#else
|
|
#define BLI_array_alloca(arr, realsize) \
|
|
alloca(sizeof(*arr) * (realsize))
|
|
#endif
|
|
|
|
#endif /* __BLI_ALLOCA_H__ */
|