Remove __STDC_FORMAT_MACROS.

Our mingw doesn't use this. (It does however still use
__STDC_CONSTANT_MACROS and __STDC_LIMIT_MACROS.)

Test: treehugger
Change-Id: I415017093b9ccffd21fd41f17a2f4387839a0f53
This commit is contained in:
Elliott Hughes 2024-02-07 18:31:25 +00:00
parent 617b3e288a
commit 1c80585cd6

View file

@ -27,9 +27,8 @@ var (
"-DWIN32_LEAN_AND_MEAN",
"-Wno-unused-parameter",
// Workaround differences in inttypes.h between host and target.
//See bug 12708004.
"-D__STDC_FORMAT_MACROS",
// Workaround differences in <stdint.h> between host and target.
// Context: http://b/12708004
"-D__STDC_CONSTANT_MACROS",
// Use C99-compliant printf functions (%zd).