diff options
| author | Jouni Hogander <jouni.hogander@unikie.com> | 2019-11-27 14:43:23 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-12-17 11:10:52 +0100 |
| commit | 24856513b213e1440ce87fafb7ed629c10b87c20 (patch) | |
| tree | ecc74ed89b58044126b7ae4686f2f0c46409ad8f /sys | |
| parent | 07bfd71dacb4775720708ca2fc39fef10c9f37c4 (diff) | |
sys/syz-extract: Add mips64le specific include paths
Couple of include paths are needed for syz-extract to work for
mips64ler2.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/syz-extract/linux.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/syz-extract/linux.go b/sys/syz-extract/linux.go index b4bfd0b1e..aa0333f36 100644 --- a/sys/syz-extract/linux.go +++ b/sys/syz-extract/linux.go @@ -133,6 +133,8 @@ func (*linux) processFile(arch *Arch, info *compiler.ConstInfo) (map[string]uint "-I" + buildDir + "/include/generated/uapi", "-I" + sourceDir, "-I" + buildDir + "/syzkaller", + "-I" + sourceDir + "/arch/" + headerArch + "/include/asm/mach-malta", + "-I" + sourceDir + "/arch/" + headerArch + "/include/asm/mach-generic", "-include", sourceDir + "/include/linux/kconfig.h", } args = append(args, arch.target.CrossCFlags...) |
