blob: e257fc6f62792080cadb079037e3f94d97664bc7 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001Drop enable format string warnings to help gcc9
2
3Fixes
4| /mnt/a/yoe/build/tmp/work/core2-64-yoe-linux-musl/mozjs/52.9.1-r0/mozjs-52.9.1/js/src/jit/x64/BaseAssembler-x64.h:596:13: error: '%s' directive argument is null [-Werror=format-overflow=]
5| 596 | spew("movq " MEM_obs ", %s", ADDR_obs(offset, base, index, scale), GPReg64Name(dst));
6| | ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7
8Upstream-Status: Inappropriate [Workaround for gcc9]
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10
11--- a/js/src/moz.build
12+++ b/js/src/moz.build
13@@ -785,7 +785,7 @@ if CONFIG['JS_HAS_CTYPES']:
Brad Bishop15ae2502019-06-18 21:44:24 -040014 if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
15 # Also disable strict-aliasing for GCC compiler, that is enabled by default
16 # starting with version 7.1, see Bug 1363009
17- CXXFLAGS += ['-Wno-shadow', '-Werror=format', '-fno-strict-aliasing']
18+ CXXFLAGS += ['-Wno-shadow', '-fno-strict-aliasing']
Brad Bishop19323692019-04-05 15:28:33 -040019
20 # Suppress warnings in third-party code.
Brad Bishop15ae2502019-06-18 21:44:24 -040021 if CONFIG['CC_TYPE'] in ('clang', 'gcc'):