mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-06 05:13:18 +00:00
perf tools riscv: Add support for riscv lookup_binutils_path
Add RISC-V binutils path on lookup triplets. Reviewed-by: Palmer Dabbelt <palmer@rivosinc.com> Signed-off-by: Paran Lee <p4ranlee@gmail.com> Acked-by: Ian Rogers <irogers@google.com> Acked-by: Palmer Dabbelt <palmer@rivosinc.com> Cc: Albert Ou <aou@eecs.berkeley.edu> Cc: Anton Blanchard <anton@ozlabs.org> Cc: Daniel Axtens <dja@axtens.net> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: linux-riscv@lists.infradead.org Link: https://lore.kernel.org/r/20230315051500.13064-1-p4ranlee@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
760ebc4574
commit
2d4c53973f
@ -43,6 +43,20 @@ const char *const powerpc_triplets[] = {
|
||||
NULL
|
||||
};
|
||||
|
||||
const char *const riscv32_triplets[] = {
|
||||
"riscv32-unknown-linux-gnu-",
|
||||
"riscv32-linux-android-",
|
||||
"riscv32-linux-gnu-",
|
||||
NULL
|
||||
};
|
||||
|
||||
const char *const riscv64_triplets[] = {
|
||||
"riscv64-unknown-linux-gnu-",
|
||||
"riscv64-linux-android-",
|
||||
"riscv64-linux-gnu-",
|
||||
NULL
|
||||
};
|
||||
|
||||
const char *const s390_triplets[] = {
|
||||
"s390-ibm-linux-",
|
||||
"s390x-linux-gnu-",
|
||||
@ -164,6 +178,10 @@ static int perf_env__lookup_binutils_path(struct perf_env *env,
|
||||
path_list = arm64_triplets;
|
||||
else if (!strcmp(arch, "powerpc"))
|
||||
path_list = powerpc_triplets;
|
||||
else if (!strcmp(arch, "riscv32"))
|
||||
path_list = riscv32_triplets;
|
||||
else if (!strcmp(arch, "riscv64"))
|
||||
path_list = riscv64_triplets;
|
||||
else if (!strcmp(arch, "sh"))
|
||||
path_list = sh_triplets;
|
||||
else if (!strcmp(arch, "s390"))
|
||||
|
Loading…
Reference in New Issue
Block a user