Skip to content

Commit d3fa0dc

Browse files
committed
openssl: disable harmless compiler warnings
Compile with -Wno-missing-field-initializers and -Wno-old-style-declaration. The warnings are harmless but they clutter the build output a great deal.
1 parent 4b8721a commit d3fa0dc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

deps/openssl/openssl.gyp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,10 @@
676676
'OPENSSLDIR="/etc/ssl"',
677677
'TERMIOS',
678678
],
679+
'cflags': [
680+
'-Wno-missing-field-initializers',
681+
'-Wno-old-style-declaration',
682+
],
679683
}],
680684
['OS=="solaris"', {
681685
'defines': ['__EXTENSIONS__'],

0 commit comments

Comments
 (0)