aboutsummaryrefslogtreecommitdiffstats
path: root/sys/syz-extract/fuchsia.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2019-03-27 09:44:01 +0100
committerDmitry Vyukov <dvyukov@google.com>2019-03-27 09:44:01 +0100
commit4e668495fb96931c819602a190c4301ae3f9956e (patch)
tree05faff7528d974f4f17e2d4850828b142e34fabd /sys/syz-extract/fuchsia.go
parent1174f0c1ec0c56cd0ce0bc746ce96777c0d22c14 (diff)
sys/syz-extract: fix too long line
Diffstat (limited to 'sys/syz-extract/fuchsia.go')
-rw-r--r--sys/syz-extract/fuchsia.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/syz-extract/fuchsia.go b/sys/syz-extract/fuchsia.go
index 83f6703e4..2784a1b11 100644
--- a/sys/syz-extract/fuchsia.go
+++ b/sys/syz-extract/fuchsia.go
@@ -27,7 +27,8 @@ func (*fuchsia) processFile(arch *Arch, info *compiler.ConstInfo) (map[string]ui
dir := arch.sourceDir
headerArch := arch.target.KernelHeaderArch
cc := filepath.Join(dir, "buildtools", "linux-x64", "clang", "bin", "clang")
- includeDir := filepath.Join(dir, "out", headerArch, "sdk", "exported", "zircon_sysroot", "arch", headerArch, "sysroot", "include")
+ includeDir := filepath.Join(dir, "out", headerArch, "sdk", "exported",
+ "zircon_sysroot", "arch", headerArch, "sysroot", "include")
args := []string{"-fmessage-length=0", "-I" + includeDir}
fidlingDir := filepath.Join(dir, "out", headerArch, "fidling", "gen")
args = append(args, "-I"+fidlingDir)