GCC

[中文]

GCC Version

The previous GCC version was GCC 12.2.0. This has now been upgraded to GCC 13.2.0 on all targets. Users that need to port their code from GCC 12.2.0 to 13.2.0 should refer to the series of official GCC porting guides listed below:

Common Porting Problems and Fixes

stdio.h No Longer Includes sys/types.h

Issue

Compilation errors may occur in code that previously worked with the old toolchain. For example:

#include <stdio.h>
clock_t var; // error: expected specifier-qualifier-list before 'clock_t'

Solution

To resolve this issue, the correct header must be included. Refactor the code like this:

#include <time.h>
clock_t var;