Use -Wno-pointer-sign

Pointer sign warnings are quite common in FreeBSD code.
This commit is contained in:
Sebastian Huber
2016-10-25 10:19:23 +02:00
parent b01ce52ef4
commit 34545adafd
2 changed files with 3 additions and 1 deletions

View File

@@ -164,7 +164,8 @@ def commonFlags():
def commonWarnings():
return ['-Wall',
'-Wno-format']
'-Wno-format',
'-Wno-pointer-sign']
def commonNoWarnings():
return ['-w']