summaryrefslogtreecommitdiff
path: root/pkg/python
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-06-04 20:48:01 -0700
committerMichael Forney <mforney@mforney.org>2020-06-05 03:01:44 -0700
commitd4297a13c823b62d29d9850ab5815f6c78baf35a (patch)
tree153ebe760b69008ea6ff38d7066368d6f254b96b /pkg/python
parentab438ea71e5b61956b9ad8c5b5f56e3a6c6b66c3 (diff)
Use -isystem to include library headers
This way, warnings from headers that come from another package (in particular linux-headers) won't show up when they get included. To make sure we still track dependencies, use -MD instead of -MMD.
Diffstat (limited to 'pkg/python')
-rw-r--r--pkg/python/gen.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkg/python/gen.lua b/pkg/python/gen.lua
index 4ae83fb6..32677cb5 100644
--- a/pkg/python/gen.lua
+++ b/pkg/python/gen.lua
@@ -3,7 +3,7 @@ cflags{
'-I $dir',
'-I $srcdir/Include',
'-I $srcdir/Include/internal',
- '-I $builddir/pkg/linux-headers/include',
+ '-isystem $builddir/pkg/linux-headers/include',
}
pkg.deps = {'pkg/linux-headers/headers'}
@@ -11,12 +11,12 @@ local libs = {}
local modules = load 'modules.lua'
if modules['_ctypes'] then
- cflags{'-I $builddir/pkg/libffi/include'}
+ cflags{'-isystem $builddir/pkg/libffi/include'}
table.insert(pkg.deps, 'pkg/libffi/headers')
table.insert(libs, 'libffi/libffi.a')
end
if modules['_hashlib'] or modules['_ssl'] then
- cflags{'-I $builddir/pkg/libressl/include'}
+ cflags{'-isystem $builddir/pkg/libressl/include'}
table.insert(pkg.deps, 'pkg/libressl/headers')
table.insert(libs, {
'libressl/libssl.a',
@@ -24,12 +24,12 @@ if modules['_hashlib'] or modules['_ssl'] then
})
end
if modules['pyexpat'] then
- cflags{'-I $builddir/pkg/expat/include'}
+ cflags{'-isystem $builddir/pkg/expat/include'}
table.insert(pkg.deps, 'pkg/expat/headers')
table.insert(libs, 'expat/libexpat.a.d')
end
if modules['zlib'] then
- cflags{'-I $builddir/pkg/zlib/include'}
+ cflags{'-isystem $builddir/pkg/zlib/include'}
table.insert(pkg.deps, 'pkg/zlib/headers')
table.insert(libs, 'zlib/libz.a')
end