Skip to content

Commit

Permalink
Fixed GCC minimum version. Issue #338.
Browse files Browse the repository at this point in the history
  • Loading branch information
bkaradzic committed Dec 12, 2024
1 parent 3e9604c commit 59a7e51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/bx/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 59a7e51

Please sign in to comment.