Support Windows IncludeFlags am: d352edf0e8
am: c7dac05abc
* commit 'c7dac05abce912136b966cf3e03ca738800f768b':
Support Windows IncludeFlags
Change-Id: I27bd3db9a35b9aac8dfa0410460eaed1df9db046
This commit is contained in:
@@ -51,8 +51,8 @@ var (
|
|||||||
}
|
}
|
||||||
|
|
||||||
windowsIncludeFlags = []string{
|
windowsIncludeFlags = []string{
|
||||||
"-I${windowsGccRoot}/${windowsGccTriple}/include",
|
"-isystem ${windowsGccRoot}/${windowsGccTriple}/include",
|
||||||
"-I${windowsGccRoot}/lib/gcc/${windowsGccTriple}/4.8.3/include",
|
"-isystem ${windowsGccRoot}/lib/gcc/${windowsGccTriple}/4.8.3/include",
|
||||||
}
|
}
|
||||||
|
|
||||||
windowsLdflags = []string{
|
windowsLdflags = []string{
|
||||||
@@ -95,6 +95,8 @@ func init() {
|
|||||||
pctx.StaticVariable("windowsX8664Cflags", strings.Join(windowsX8664Cflags, " "))
|
pctx.StaticVariable("windowsX8664Cflags", strings.Join(windowsX8664Cflags, " "))
|
||||||
pctx.StaticVariable("windowsX86Ldflags", strings.Join(windowsX86Ldflags, " "))
|
pctx.StaticVariable("windowsX86Ldflags", strings.Join(windowsX86Ldflags, " "))
|
||||||
pctx.StaticVariable("windowsX8664Ldflags", strings.Join(windowsX8664Ldflags, " "))
|
pctx.StaticVariable("windowsX8664Ldflags", strings.Join(windowsX8664Ldflags, " "))
|
||||||
|
|
||||||
|
pctx.StaticVariable("windowsIncludeFlags", strings.Join(windowsIncludeFlags, " "))
|
||||||
}
|
}
|
||||||
|
|
||||||
type toolchainWindows struct {
|
type toolchainWindows struct {
|
||||||
@@ -152,7 +154,7 @@ func (t *toolchainWindowsX8664) Ldflags() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (t *toolchainWindows) IncludeFlags() string {
|
func (t *toolchainWindows) IncludeFlags() string {
|
||||||
return ""
|
return "${windowsIncludeFlags}"
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *toolchainWindows) ClangSupported() bool {
|
func (t *toolchainWindows) ClangSupported() bool {
|
||||||
|
Reference in New Issue
Block a user