aboutsummaryrefslogtreecommitdiffstats
path: root/cc/toolchain.go
diff options
context:
space:
mode:
Diffstat (limited to 'cc/toolchain.go')
-rw-r--r--cc/toolchain.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/cc/toolchain.go b/cc/toolchain.go
index 9f6ad2ea..1f51384a 100644
--- a/cc/toolchain.go
+++ b/cc/toolchain.go
@@ -70,6 +70,9 @@ type Toolchain interface {
ShlibSuffix() string
ExecutableSuffix() string
+
+ SystemCppCppflags() string
+ SystemCppLdflags() string
}
type toolchainBase struct {
@@ -117,6 +120,14 @@ func (toolchainBase) ClangAsflags() string {
return ""
}
+func (toolchainBase) SystemCppCppflags() string {
+ return ""
+}
+
+func (toolchainBase) SystemCppLdflags() string {
+ return ""
+}
+
type toolchain64Bit struct {
toolchainBase
}