sys/targets: fix build

This commit is contained in:
Dmitry Vyukov 2018-11-17 10:35:11 -08:00
parent 1508cc9c44
commit 7d395878aa

View File

@ -313,6 +313,7 @@ var oses = map[string]osCommon{
"trusty": {
SyscallNumbers: true,
SyscallPrefix: "__NR_",
CPP: "cpp",
},
}
@ -328,6 +329,7 @@ func init() {
}
for _, target := range List["test"] {
target.CCompiler = List[goos][runtime.GOARCH].CCompiler
target.CPP = List[goos][runtime.GOARCH].CPP
}
}