1 // SPDX-License-Identifier: GPL-2.0
8 #include "../util/env.h"
9 #include "../util/debug.h"
10 #include <linux/zalloc.h>
12 const char *const arc_triplets
[] = {
14 "arc-snps-linux-uclibc-",
15 "arc-snps-linux-gnu-",
19 const char *const arm_triplets
[] = {
21 "arm-linux-androideabi-",
23 "arm-unknown-linux-gnu-",
24 "arm-unknown-linux-gnueabi-",
26 "arm-linux-gnueabihf-",
31 const char *const arm64_triplets
[] = {
32 "aarch64-linux-android-",
37 const char *const powerpc_triplets
[] = {
38 "powerpc-unknown-linux-gnu-",
40 "powerpc64-unknown-linux-gnu-",
41 "powerpc64-linux-gnu-",
42 "powerpc64le-linux-gnu-",
46 const char *const s390_triplets
[] = {
52 const char *const sh_triplets
[] = {
53 "sh-unknown-linux-gnu-",
54 "sh64-unknown-linux-gnu-",
60 const char *const sparc_triplets
[] = {
61 "sparc-unknown-linux-gnu-",
62 "sparc64-unknown-linux-gnu-",
67 const char *const x86_triplets
[] = {
68 "x86_64-pc-linux-gnu-",
69 "x86_64-unknown-linux-gnu-",
74 "i686-linux-android-",
75 "i686-android-linux-",
81 const char *const mips_triplets
[] = {
82 "mips-unknown-linux-gnu-",
83 "mipsel-linux-android-",
86 "mips64el-linux-gnuabi64-",
87 "mips64-linux-gnuabi64-",
92 static bool lookup_path(char *name
)
95 char *path
, *tmp
= NULL
;
97 char *env
= getenv("PATH");
106 path
= strtok_r(env
, ":", &tmp
);
108 scnprintf(buf
, sizeof(buf
), "%s/%s", path
, name
);
109 if (access(buf
, F_OK
) == 0) {
113 path
= strtok_r(NULL
, ":", &tmp
);
119 static int lookup_triplets(const char *const *triplets
, const char *name
)
124 for (i
= 0; triplets
[i
] != NULL
; i
++) {
125 scnprintf(buf
, sizeof(buf
), "%s%s", triplets
[i
], name
);
126 if (lookup_path(buf
))
132 static int perf_env__lookup_binutils_path(struct perf_env
*env
,
133 const char *name
, const char **path
)
136 const char *arch
= perf_env__arch(env
), *cross_env
;
137 const char *const *path_list
;
141 * We don't need to try to find objdump path for native system.
142 * Just use default binutils path (e.g.: "objdump").
144 if (!strcmp(perf_env__arch(NULL
), arch
))
147 cross_env
= getenv("CROSS_COMPILE");
149 if (asprintf(&buf
, "%s%s", cross_env
, name
) < 0)
152 if (access(buf
, F_OK
) == 0)
156 if (lookup_path(buf
))
161 if (!strcmp(arch
, "arc"))
162 path_list
= arc_triplets
;
163 else if (!strcmp(arch
, "arm"))
164 path_list
= arm_triplets
;
165 else if (!strcmp(arch
, "arm64"))
166 path_list
= arm64_triplets
;
167 else if (!strcmp(arch
, "powerpc"))
168 path_list
= powerpc_triplets
;
169 else if (!strcmp(arch
, "sh"))
170 path_list
= sh_triplets
;
171 else if (!strcmp(arch
, "s390"))
172 path_list
= s390_triplets
;
173 else if (!strcmp(arch
, "sparc"))
174 path_list
= sparc_triplets
;
175 else if (!strcmp(arch
, "x86"))
176 path_list
= x86_triplets
;
177 else if (!strcmp(arch
, "mips"))
178 path_list
= mips_triplets
;
180 ui__error("binutils for %s not supported.\n", arch
);
184 idx
= lookup_triplets(path_list
, name
);
186 ui__error("Please install %s for %s.\n"
187 "You can add it to PATH, set CROSS_COMPILE or "
188 "override the default using --%s.\n",
193 if (asprintf(&buf
, "%s%s", path_list
[idx
], name
) < 0)
205 int perf_env__lookup_objdump(struct perf_env
*env
, const char **path
)
208 * For live mode, env->arch will be NULL and we can use
209 * the native objdump tool.
211 if (env
->arch
== NULL
)
214 return perf_env__lookup_binutils_path(env
, "objdump", path
);
218 * Some architectures have a single address space for kernel and user addresses,
219 * which makes it possible to determine if an address is in kernel space or user
222 bool perf_env__single_address_space(struct perf_env
*env
)
224 return strcmp(perf_env__arch(env
), "sparc");