toolchain: correctly include common inclusion as well
This commit is contained in:
parent
f178a6e003
commit
0ae40e8ff7
1 changed files with 2 additions and 1 deletions
|
@ -51,7 +51,8 @@ class Arch(object):
|
||||||
"-arch", self.arch,
|
"-arch", self.arch,
|
||||||
"-pipe", "-no-cpp-precomp",
|
"-pipe", "-no-cpp-precomp",
|
||||||
"--sysroot={}".format(self.sysroot),
|
"--sysroot={}".format(self.sysroot),
|
||||||
"-I{}/include/{}".format(self.ctx.dist_dir, self.arch),
|
"-I{}/common".format(self.ctx.include_dir),
|
||||||
|
"-I{}/{}".format(self.ctx.include_dir, self.arch),
|
||||||
"-O3",
|
"-O3",
|
||||||
self.version_min
|
self.version_min
|
||||||
])
|
])
|
||||||
|
|
Loading…
Reference in a new issue