From 59a7e51668b06bf7769721449a6850905ff974b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Wed, 11 Dec 2024 17:18:21 -0800 Subject: [PATCH] Fixed GCC minimum version. Issue #338. --- include/bx/platform.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/bx/platform.h b/include/bx/platform.h index 4560d7a..2e79040 100644 --- a/include/bx/platform.h +++ b/include/bx/platform.h @@ -464,9 +464,9 @@ static_assert(!BX_COMPILER_CLANG || BX_COMPILER_CLANG >= 110000, "\n\n" "\t\n"); // https://gcc.gnu.org/releases.html -static_assert(!BX_COMPILER_GCC || BX_COMPILER_GCC >= 80400, "\n\n" +static_assert(!BX_COMPILER_GCC || BX_COMPILER_GCC >= 110000, "\n\n" "\t** IMPORTANT! **\n\n" - "\tMinimum supported GCC version is 8.4 (March 4, 2020).\n" + "\tMinimum supported GCC version is 11.0 (April 27, 2021).\n" "\t\n"); // https://learn.microsoft.com/en-us/visualstudio/releases/2019/history