waifulib: fix including system includes
This commit is contained in:
parent
e4bb3ecd12
commit
ee363ebb74
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ class Android:
|
||||||
if self.is_host():
|
if self.is_host():
|
||||||
cflags += [
|
cflags += [
|
||||||
'--sysroot=%s/sysroot' % (self.gen_gcc_toolchain_path()),
|
'--sysroot=%s/sysroot' % (self.gen_gcc_toolchain_path()),
|
||||||
'-I%s/usr/include/' % (self.sysroot())
|
'-isystem', '%s/usr/include/' % (self.sysroot())
|
||||||
]
|
]
|
||||||
|
|
||||||
cflags += ['-I%s' % (self.system_stl()), '-DANDROID', '-D__ANDROID__']
|
cflags += ['-I%s' % (self.system_stl()), '-DANDROID', '-D__ANDROID__']
|
||||||
|
|
Loading…
Add table
Reference in a new issue