From ff5fb3046c399ee921d31b80e8ec86c73c7d7553 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 12 Jun 2023 18:44:31 +0200 Subject: tools/syz-bisect: support Linker parameter --- tools/syz-bisect/bisect.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/syz-bisect/bisect.go b/tools/syz-bisect/bisect.go index 00c1afb6e..b0a28fab0 100644 --- a/tools/syz-bisect/bisect.go +++ b/tools/syz-bisect/bisect.go @@ -51,6 +51,7 @@ type Config struct { // older versions of the kernel. For linux, it needs to include several // compiler versions. BinDir string `json:"bin_dir"` + Linker string `json:"linker"` Ccache string `json:"ccache"` KernelRepo string `json:"kernel_repo"` KernelBranch string `json:"kernel_branch"` @@ -100,6 +101,7 @@ func main() { Fix: *flagFix, DefaultCompiler: mycfg.Compiler, CompilerType: mycfg.CompilerType, + Linker: mycfg.Linker, BinDir: mycfg.BinDir, Ccache: mycfg.Ccache, Kernel: bisect.KernelConfig{ -- cgit mrf-deployment