aboutsummaryrefslogtreecommitdiff
path: root/cc/config/x86_windows_host.go
diff options
context:
space:
mode:
Diffstat (limited to 'cc/config/x86_windows_host.go')
-rw-r--r--cc/config/x86_windows_host.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/cc/config/x86_windows_host.go b/cc/config/x86_windows_host.go
index 016e71126..fea629109 100644
--- a/cc/config/x86_windows_host.go
+++ b/cc/config/x86_windows_host.go
@@ -245,10 +245,20 @@ func (t *toolchainWindowsX86) ClangLdflags() string {
return "${config.WindowsClangLdflags} ${config.WindowsX86ClangLdflags}"
}
+func (t *toolchainWindowsX86) ClangLldflags() string {
+ // TODO: define and use Windows*ClangLldflags
+ return "${config.WindowsClangLdflags} ${config.WindowsX86ClangLdflags}"
+}
+
func (t *toolchainWindowsX8664) ClangLdflags() string {
return "${config.WindowsClangLdflags} ${config.WindowsX8664ClangLdflags}"
}
+func (t *toolchainWindowsX8664) ClangLldflags() string {
+ // TODO: define and use Windows*ClangLldflags
+ return "${config.WindowsClangLdflags} ${config.WindowsX8664ClangLdflags}"
+}
+
func (t *toolchainWindows) ShlibSuffix() string {
return ".dll"
}