From b1b7f6746c796ca288dd1be69c8f56b95614cbb7 Mon Sep 17 00:00:00 2001 From: David Carlier Date: Sun, 27 Oct 2019 06:17:54 +0000 Subject: [PATCH] build: fixes build for some os versions For format macros, the __STDC_FORMAT_MACROS flag needs to be passed, also passing the librt linker flag. --- common.gypi | 1 + 1 file changed, 1 insertion(+) diff --git a/common.gypi b/common.gypi index 6ce005e26ecbe2..89a8c23761462d 100644 --- a/common.gypi +++ b/common.gypi @@ -361,6 +361,7 @@ [ 'OS in "linux freebsd openbsd solaris android aix cloudabi"', { 'cflags': [ '-Wall', '-Wextra', '-Wno-unused-parameter', ], 'cflags_cc': [ '-fno-rtti', '-fno-exceptions', '-std=gnu++1y' ], + 'defines': [ '__STDC_FORMAT_MACROS' ], 'ldflags': [ '-rdynamic' ], 'target_conditions': [ # The 1990s toolchain on SmartOS can't handle thin archives.