summaryrefslogtreecommitdiffstats
path: root/builder.py
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-10-25 10:19:23 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-11-14 11:00:33 +0100
commit34545adafd8ba9170bc44d3b919bf0d18e45ca5e (patch)
tree48594493e673fa87fabd89fbc32dc11e172de753 /builder.py
parentFix errno redefined warning (diff)
downloadrtems-libbsd-34545adafd8ba9170bc44d3b919bf0d18e45ca5e.tar.bz2
Use -Wno-pointer-sign
Pointer sign warnings are quite common in FreeBSD code.
Diffstat (limited to 'builder.py')
-rwxr-xr-xbuilder.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/builder.py b/builder.py
index 56494017..4a749d02 100755
--- a/builder.py
+++ b/builder.py
@@ -164,7 +164,8 @@ def commonFlags():
def commonWarnings():
return ['-Wall',
- '-Wno-format']
+ '-Wno-format',
+ '-Wno-pointer-sign']
def commonNoWarnings():
return ['-w']