blob: 2928ea42d0e66dbac33e5c4ff8b3850af45c0bed [file] [log] [blame]
Peter Korsgaard85dc57f2011-04-29 13:09:26 +02001/**
Arnout Vandecappellef6ae2432015-10-04 13:28:41 +01002 * Buildroot wrapper for toolchains. This simply executes the real toolchain
3 * with a number of arguments (sysroot/arch/..) hardcoded, to ensure the
4 * toolchain uses the correct configuration.
Arnout Vandecappellebefb9a32012-07-15 01:12:05 +00005 * The hardcoded path arguments are defined relative to the actual location
6 * of the binary.
Peter Korsgaard85dc57f2011-04-29 13:09:26 +02007 *
8 * (C) 2011 Peter Korsgaard <jacmet@sunsite.dk>
Daniel Nyströme8c46b12011-06-21 21:54:27 +02009 * (C) 2011 Daniel Nyström <daniel.nystrom@timeterminal.se>
Arnout Vandecappellebefb9a32012-07-15 01:12:05 +000010 * (C) 2012 Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Spenser Gillilandaa86b522013-07-19 18:31:58 -050011 * (C) 2013 Spenser Gilliland <spenser@gillilanding.com>
Peter Korsgaard85dc57f2011-04-29 13:09:26 +020012 *
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
16 */
17
Thomas Petazzoni5aa205e2014-12-10 23:53:46 +010018#define _GNU_SOURCE
Peter Korsgaard85dc57f2011-04-29 13:09:26 +020019#include <stdio.h>
20#include <string.h>
21#include <limits.h>
22#include <unistd.h>
Daniel Nyströme8c46b12011-06-21 21:54:27 +020023#include <stdlib.h>
Thomas Petazzoni5aa205e2014-12-10 23:53:46 +010024#include <errno.h>
Yann E. MORIN6393b692017-10-21 22:31:02 +020025#include <time.h>
26#include <stdbool.h>
Peter Korsgaard85dc57f2011-04-29 13:09:26 +020027
Arnout Vandecappelled82f69c2015-10-04 16:23:56 +010028#ifdef BR_CCACHE
29static char ccache_path[PATH_MAX];
30#endif
Arnout Vandecappellebefb9a32012-07-15 01:12:05 +000031static char path[PATH_MAX];
32static char sysroot[PATH_MAX];
Yann E. MORIN6393b692017-10-21 22:31:02 +020033/* As would be defined by gcc:
34 * https://gcc.gnu.org/onlinedocs/cpp/Standard-Predefined-Macros.html
35 * sizeof() on string literals includes the terminating \0. */
36static char _time_[sizeof("-D__TIME__=\"HH:MM:SS\"")];
37static char _date_[sizeof("-D__DATE__=\"MMM DD YYYY\"")];
Peter Korsgaard85dc57f2011-04-29 13:09:26 +020038
Spenser Gillilandaa86b522013-07-19 18:31:58 -050039/**
40 * GCC errors out with certain combinations of arguments (examples are
Baruch Siach5c768422014-04-10 08:46:25 +030041 * -mfloat-abi={hard|soft} and -m{little|big}-endian), so we have to ensure
Spenser Gillilandaa86b522013-07-19 18:31:58 -050042 * that we only pass the predefined one to the real compiler if the inverse
43 * option isn't in the argument list.
44 * This specifies the worst case number of extra arguments we might pass
Yann E. MORIN6393b692017-10-21 22:31:02 +020045 * Currently, we may have:
Yann E. MORIN2c1dc322014-01-07 23:46:05 +010046 * -mfloat-abi=
47 * -march=
Yann E. MORIN2c1dc322014-01-07 23:46:05 +010048 * -mcpu=
Yann E. MORIN6393b692017-10-21 22:31:02 +020049 * -D__TIME__=
50 * -D__DATE__=
51 * -Wno-builtin-macro-redefined
Spenser Gillilandaa86b522013-07-19 18:31:58 -050052 */
Yann E. MORIN6393b692017-10-21 22:31:02 +020053#define EXCLUSIVE_ARGS 6
Spenser Gillilandaa86b522013-07-19 18:31:58 -050054
Daniel Nyströme8c46b12011-06-21 21:54:27 +020055static char *predef_args[] = {
Arnout Vandecappelled82f69c2015-10-04 16:23:56 +010056#ifdef BR_CCACHE
57 ccache_path,
58#endif
Peter Korsgaard85dc57f2011-04-29 13:09:26 +020059 path,
Arnout Vandecappellebefb9a32012-07-15 01:12:05 +000060 "--sysroot", sysroot,
Peter Korsgaard85dc57f2011-04-29 13:09:26 +020061#ifdef BR_ABI
62 "-mabi=" BR_ABI,
63#endif
Vicente Olivert Riera2d8f3fc2017-06-28 16:17:10 +010064#ifdef BR_NAN
65 "-mnan=" BR_NAN,
66#endif
Spenser Gilliland27c93702013-07-19 18:31:57 -050067#ifdef BR_FPU
Thomas Petazzonid7745512013-07-16 10:03:12 +020068 "-mfpu=" BR_FPU,
69#endif
Peter Korsgaard85dc57f2011-04-29 13:09:26 +020070#ifdef BR_SOFTFLOAT
71 "-msoft-float",
72#endif /* BR_SOFTFLOAT */
Thomas Petazzoni85d07692013-07-16 10:03:22 +020073#ifdef BR_MODE
74 "-m" BR_MODE,
75#endif
Arnout Vandecappelle (Essensium/Mind)a22dc0f2012-03-13 23:30:00 +010076#ifdef BR_64
77 "-m64",
78#endif
Ray Kinsella968f5d52015-10-19 11:02:52 +000079#ifdef BR_OMIT_LOCK_PREFIX
80 "-Wa,-momit-lock-prefix=yes",
81#endif
Vicente Olivert Riera240564a2016-11-09 16:16:57 +000082#ifdef BR_NO_FUSED_MADD
83 "-mno-fused-madd",
84#endif
Sonic Zhang57133822013-05-03 00:39:34 +000085#ifdef BR_BINFMT_FLAT
86 "-Wl,-elf2flt",
87#endif
Markos Chandrasf3a2b802013-10-14 10:52:25 +010088#ifdef BR_MIPS_TARGET_LITTLE_ENDIAN
89 "-EL",
90#endif
Alexey Brodkin2b93fe52015-03-10 14:50:24 +030091#if defined(BR_MIPS_TARGET_BIG_ENDIAN) || defined(BR_ARC_TARGET_BIG_ENDIAN)
Markos Chandrasf3a2b802013-10-14 10:52:25 +010092 "-EB",
93#endif
Thomas Petazzonib95e4362011-12-31 12:09:33 +010094#ifdef BR_ADDITIONAL_CFLAGS
95 BR_ADDITIONAL_CFLAGS
96#endif
Peter Korsgaard85dc57f2011-04-29 13:09:26 +020097};
98
Yann E. MORIN31c093e2016-12-04 10:21:55 +010099/* A {string,length} tuple, to avoid computing strlen() on constants.
100 * - str must be a \0-terminated string
101 * - len does not account for the terminating '\0'
102 */
103struct str_len_s {
104 const char *str;
Yann E. MORIN61cb1202016-08-29 17:53:59 +0200105 size_t len;
106};
107
Yann E. MORIN31c093e2016-12-04 10:21:55 +0100108/* Define a {string,length} tuple. Takes an unquoted constant string as
109 * parameter. sizeof() on a string literal includes the terminating \0,
110 * but we don't want to count it.
111 */
112#define STR_LEN(s) { #s, sizeof(#s)-1 }
113
Yann E. MORIN3eccf762016-12-04 10:21:56 +0100114/* List of paths considered unsafe for cross-compilation.
115 *
116 * An unsafe path is one that points to a directory with libraries or
117 * headers for the build machine, which are not suitable for the target.
118 */
119static const struct str_len_s unsafe_paths[] = {
120 STR_LEN(/lib),
121 STR_LEN(/usr/include),
122 STR_LEN(/usr/lib),
123 STR_LEN(/usr/local/include),
124 STR_LEN(/usr/local/lib),
125 { NULL, 0 },
126};
127
Yann E. MORIN61cb1202016-08-29 17:53:59 +0200128/* Unsafe options are options that specify a potentialy unsafe path,
129 * that will be checked by check_unsafe_path(), below.
Yann E. MORIN61cb1202016-08-29 17:53:59 +0200130 */
Yann E. MORIN31c093e2016-12-04 10:21:55 +0100131static const struct str_len_s unsafe_opts[] = {
132 STR_LEN(-I),
133 STR_LEN(-idirafter),
134 STR_LEN(-iquote),
135 STR_LEN(-isystem),
136 STR_LEN(-L),
Yann E. MORIN61cb1202016-08-29 17:53:59 +0200137 { NULL, 0 },
138};
139
Yann E. MORIN105a8c12016-08-29 17:53:58 +0200140/* Check if path is unsafe for cross-compilation. Unsafe paths are those
141 * pointing to the standard native include or library paths.
142 *
143 * We print the arguments leading to the failure. For some options, gcc
144 * accepts the path to be concatenated to the argument (e.g. -I/foo/bar)
145 * or separated (e.g. -I /foo/bar). In the first case, we need only print
146 * the argument as it already contains the path (arg_has_path), while in
147 * the second case we need to print both (!arg_has_path).
148 *
149 * If paranoid, exit in error instead of just printing a warning.
150 */
151static void check_unsafe_path(const char *arg,
152 const char *path,
153 int paranoid,
154 int arg_has_path)
Thomas Petazzoni5aa205e2014-12-10 23:53:46 +0100155{
Yann E. MORIN3eccf762016-12-04 10:21:56 +0100156 const struct str_len_s *p;
Thomas Petazzoni5aa205e2014-12-10 23:53:46 +0100157
Yann E. MORIN3eccf762016-12-04 10:21:56 +0100158 for (p=unsafe_paths; p->str; p++) {
159 if (strncmp(path, p->str, p->len))
Thomas Petazzoni5aa205e2014-12-10 23:53:46 +0100160 continue;
Yann E. MORIN105a8c12016-08-29 17:53:58 +0200161 fprintf(stderr,
162 "%s: %s: unsafe header/library path used in cross-compilation: '%s%s%s'\n",
163 program_invocation_short_name,
164 paranoid ? "ERROR" : "WARNING",
165 arg,
166 arg_has_path ? "" : "' '", /* close single-quote, space, open single-quote */
167 arg_has_path ? "" : path); /* so that arg and path are properly quoted. */
168 if (paranoid)
169 exit(1);
Thomas Petazzoni5aa205e2014-12-10 23:53:46 +0100170 }
171}
172
Yann E. MORIN6393b692017-10-21 22:31:02 +0200173/* Returns false if SOURCE_DATE_EPOCH was not defined in the environment.
174 *
175 * Returns true if SOURCE_DATE_EPOCH is in the environment and represent
176 * a valid timestamp, in which case the timestamp is formatted into the
177 * global variables _date_ and _time_.
178 *
179 * Aborts if SOURCE_DATE_EPOCH was set in the environment but did not
180 * contain a valid timestamp.
181 *
182 * Valid values are defined in the spec:
183 * https://reproducible-builds.org/specs/source-date-epoch/
184 * but we further restrict them to be positive or null.
185 */
186bool parse_source_date_epoch_from_env(void)
187{
188 char *epoch_env, *endptr;
189 time_t epoch;
190 struct tm epoch_tm;
191
192 if ((epoch_env = getenv("SOURCE_DATE_EPOCH")) == NULL)
193 return false;
194 errno = 0;
195 epoch = (time_t) strtoll(epoch_env, &endptr, 10);
196 /* We just need to test if it is incorrect, but we do not
197 * care why it is incorrect.
198 */
199 if ((errno != 0) || !*epoch_env || *endptr || (epoch < 0)) {
200 fprintf(stderr, "%s: invalid SOURCE_DATE_EPOCH='%s'\n",
201 program_invocation_short_name,
202 epoch_env);
203 exit(1);
204 }
205 tzset(); /* For localtime_r(), below. */
206 if (localtime_r(&epoch, &epoch_tm) == NULL) {
207 fprintf(stderr, "%s: cannot parse SOURCE_DATE_EPOCH=%s\n",
208 program_invocation_short_name,
209 getenv("SOURCE_DATE_EPOCH"));
210 exit(1);
211 }
212 if (!strftime(_time_, sizeof(_time_), "-D__TIME__=\"%T\"", &epoch_tm)) {
213 fprintf(stderr, "%s: cannot set time from SOURCE_DATE_EPOCH=%s\n",
214 program_invocation_short_name,
215 getenv("SOURCE_DATE_EPOCH"));
216 exit(1);
217 }
218 if (!strftime(_date_, sizeof(_date_), "-D__DATE__=\"%b %e %Y\"", &epoch_tm)) {
219 fprintf(stderr, "%s: cannot set date from SOURCE_DATE_EPOCH=%s\n",
220 program_invocation_short_name,
221 getenv("SOURCE_DATE_EPOCH"));
222 exit(1);
223 }
224 return true;
225}
226
Peter Korsgaard85dc57f2011-04-29 13:09:26 +0200227int main(int argc, char **argv)
228{
Arnout Vandecappelle792f1272015-10-04 13:28:56 +0100229 char **args, **cur, **exec_args;
Arnout Vandecappellebefb9a32012-07-15 01:12:05 +0000230 char *relbasedir, *absbasedir;
231 char *progpath = argv[0];
232 char *basename;
Yann E. MORIN60cb2902013-09-21 00:00:30 +0200233 char *env_debug;
Thomas Petazzoni5aa205e2014-12-10 23:53:46 +0100234 char *paranoid_wrapper;
235 int paranoid;
Yann E. MORIN60cb2902013-09-21 00:00:30 +0200236 int ret, i, count = 0, debug;
Arnout Vandecappellebefb9a32012-07-15 01:12:05 +0000237
238 /* Calculate the relative paths */
239 basename = strrchr(progpath, '/');
240 if (basename) {
241 *basename = '\0';
242 basename++;
243 relbasedir = malloc(strlen(progpath) + 7);
244 if (relbasedir == NULL) {
245 perror(__FILE__ ": malloc");
246 return 2;
247 }
Arnout Vandecappelle14151d72017-07-04 16:03:53 +0200248 sprintf(relbasedir, "%s/..", argv[0]);
Arnout Vandecappellebefb9a32012-07-15 01:12:05 +0000249 absbasedir = realpath(relbasedir, NULL);
250 } else {
251 basename = progpath;
Patrick Ziegler74ae7af2013-05-28 23:41:19 +0000252 absbasedir = malloc(PATH_MAX + 1);
253 ret = readlink("/proc/self/exe", absbasedir, PATH_MAX);
254 if (ret < 0) {
255 perror(__FILE__ ": readlink");
256 return 2;
257 }
258 absbasedir[ret] = '\0';
259 for (i = ret; i > 0; i--) {
260 if (absbasedir[i] == '/') {
261 absbasedir[i] = '\0';
Arnout Vandecappelle015d68c2017-07-07 09:43:30 +0200262 if (++count == 2)
Patrick Ziegler74ae7af2013-05-28 23:41:19 +0000263 break;
264 }
265 }
Arnout Vandecappellebefb9a32012-07-15 01:12:05 +0000266 }
267 if (absbasedir == NULL) {
268 perror(__FILE__ ": realpath");
269 return 2;
270 }
271
272 /* Fill in the relative paths */
273#ifdef BR_CROSS_PATH_REL
Arnout Vandecappelle5ce73dc2015-10-14 23:05:55 +0200274 ret = snprintf(path, sizeof(path), "%s/" BR_CROSS_PATH_REL "/%s" BR_CROSS_PATH_SUFFIX, absbasedir, basename);
Peter Korsgaardccdb1792015-10-05 08:25:17 +0200275#elif defined(BR_CROSS_PATH_ABS)
Arnout Vandecappelle5ce73dc2015-10-14 23:05:55 +0200276 ret = snprintf(path, sizeof(path), BR_CROSS_PATH_ABS "/%s" BR_CROSS_PATH_SUFFIX, basename);
277#else
Arnout Vandecappelle2a47bd32017-07-10 01:21:18 +0200278 ret = snprintf(path, sizeof(path), "%s/bin/%s" BR_CROSS_PATH_SUFFIX, absbasedir, basename);
Arnout Vandecappellebefb9a32012-07-15 01:12:05 +0000279#endif
280 if (ret >= sizeof(path)) {
281 perror(__FILE__ ": overflow");
282 return 3;
283 }
Arnout Vandecappelled82f69c2015-10-04 16:23:56 +0100284#ifdef BR_CCACHE
Arnout Vandecappelle2a47bd32017-07-10 01:21:18 +0200285 ret = snprintf(ccache_path, sizeof(ccache_path), "%s/bin/ccache", absbasedir);
Arnout Vandecappelled82f69c2015-10-04 16:23:56 +0100286 if (ret >= sizeof(ccache_path)) {
287 perror(__FILE__ ": overflow");
288 return 3;
289 }
290#endif
Arnout Vandecappellebefb9a32012-07-15 01:12:05 +0000291 ret = snprintf(sysroot, sizeof(sysroot), "%s/" BR_SYSROOT, absbasedir);
292 if (ret >= sizeof(sysroot)) {
293 perror(__FILE__ ": overflow");
294 return 3;
295 }
Peter Korsgaard85dc57f2011-04-29 13:09:26 +0200296
Spenser Gillilandaa86b522013-07-19 18:31:58 -0500297 cur = args = malloc(sizeof(predef_args) +
298 (sizeof(char *) * (argc + EXCLUSIVE_ARGS)));
Daniel Nyströme8c46b12011-06-21 21:54:27 +0200299 if (args == NULL) {
300 perror(__FILE__ ": malloc");
301 return 2;
Peter Korsgaard85dc57f2011-04-29 13:09:26 +0200302 }
303
Daniel Nyströme8c46b12011-06-21 21:54:27 +0200304 /* start with predefined args */
305 memcpy(cur, predef_args, sizeof(predef_args));
306 cur += sizeof(predef_args) / sizeof(predef_args[0]);
307
Spenser Gillilandaa86b522013-07-19 18:31:58 -0500308#ifdef BR_FLOAT_ABI
309 /* add float abi if not overridden in args */
310 for (i = 1; i < argc; i++) {
311 if (!strncmp(argv[i], "-mfloat-abi=", strlen("-mfloat-abi=")) ||
312 !strcmp(argv[i], "-msoft-float") ||
313 !strcmp(argv[i], "-mhard-float"))
314 break;
315 }
316
317 if (i == argc)
318 *cur++ = "-mfloat-abi=" BR_FLOAT_ABI;
319#endif
320
Vicente Olivert Riera9a0a0a92017-06-28 16:17:11 +0100321#ifdef BR_FP32_MODE
322 /* add fp32 mode if soft-float is not args or hard-float overrides soft-float */
323 int add_fp32_mode = 1;
324 for (i = 1; i < argc; i++) {
325 if (!strcmp(argv[i], "-msoft-float"))
326 add_fp32_mode = 0;
327 else if (!strcmp(argv[i], "-mhard-float"))
328 add_fp32_mode = 1;
329 }
330
331 if (add_fp32_mode == 1)
332 *cur++ = "-mfp" BR_FP32_MODE;
333#endif
334
Yann E. MORIN2c1dc322014-01-07 23:46:05 +0100335#if defined(BR_ARCH) || \
Yann E. MORIN2c1dc322014-01-07 23:46:05 +0100336 defined(BR_CPU)
Thomas De Schampheleireb62cb782015-07-26 12:53:07 +0200337 /* Add our -march/cpu flags, but only if none of
338 * -march/mtune/mcpu are already specified on the commandline
Yann E. MORIN2c1dc322014-01-07 23:46:05 +0100339 */
340 for (i = 1; i < argc; i++) {
341 if (!strncmp(argv[i], "-march=", strlen("-march=")) ||
Thomas De Schampheleireb62cb782015-07-26 12:53:07 +0200342 !strncmp(argv[i], "-mtune=", strlen("-mtune=")) ||
Yann E. MORIN2c1dc322014-01-07 23:46:05 +0100343 !strncmp(argv[i], "-mcpu=", strlen("-mcpu=" )))
344 break;
345 }
346 if (i == argc) {
347#ifdef BR_ARCH
348 *cur++ = "-march=" BR_ARCH;
349#endif
Yann E. MORIN2c1dc322014-01-07 23:46:05 +0100350#ifdef BR_CPU
351 *cur++ = "-mcpu=" BR_CPU;
352#endif
353 }
Thomas Petazzoni5715d2d2014-10-21 22:27:16 +0200354#endif /* ARCH || CPU */
Yann E. MORIN2c1dc322014-01-07 23:46:05 +0100355
Yann E. MORIN6393b692017-10-21 22:31:02 +0200356 if (parse_source_date_epoch_from_env()) {
357 *cur++ = _time_;
358 *cur++ = _date_;
359 /* This has existed since gcc-4.4.0. */
360 *cur++ = "-Wno-builtin-macro-redefined";
361 }
362
Thomas Petazzoni5aa205e2014-12-10 23:53:46 +0100363 paranoid_wrapper = getenv("BR_COMPILER_PARANOID_UNSAFE_PATH");
364 if (paranoid_wrapper && strlen(paranoid_wrapper) > 0)
365 paranoid = 1;
366 else
367 paranoid = 0;
368
369 /* Check for unsafe library and header paths */
370 for (i = 1; i < argc; i++) {
Yann E. MORIN31c093e2016-12-04 10:21:55 +0100371 const struct str_len_s *opt;
372 for (opt=unsafe_opts; opt->str; opt++ ) {
Yann E. MORIN61cb1202016-08-29 17:53:59 +0200373 /* Skip any non-unsafe option. */
Yann E. MORIN31c093e2016-12-04 10:21:55 +0100374 if (strncmp(argv[i], opt->str, opt->len))
Thomas Petazzoni5aa205e2014-12-10 23:53:46 +0100375 continue;
Yann E. MORIN61cb1202016-08-29 17:53:59 +0200376
377 /* Handle both cases:
378 * - path is a separate argument,
379 * - path is concatenated with option.
380 */
381 if (argv[i][opt->len] == '\0') {
382 i++;
383 if (i == argc)
384 break;
385 check_unsafe_path(argv[i-1], argv[i], paranoid, 0);
386 } else
387 check_unsafe_path(argv[i], argv[i] + opt->len, paranoid, 1);
Thomas Petazzoni5aa205e2014-12-10 23:53:46 +0100388 }
389 }
390
Daniel Nyströme8c46b12011-06-21 21:54:27 +0200391 /* append forward args */
392 memcpy(cur, &argv[1], sizeof(char *) * (argc - 1));
393 cur += argc - 1;
394
395 /* finish with NULL termination */
396 *cur = NULL;
Peter Korsgaard85dc57f2011-04-29 13:09:26 +0200397
Arnout Vandecappelle792f1272015-10-04 13:28:56 +0100398 exec_args = args;
399#ifdef BR_CCACHE
400 if (getenv("BR_NO_CCACHE"))
401 /* Skip the ccache call */
402 exec_args++;
403#endif
404
Yann E. MORIN60cb2902013-09-21 00:00:30 +0200405 /* Debug the wrapper to see actual arguments passed to
406 * the compiler:
407 * unset, empty, or 0: do not trace
408 * set to 1 : trace all arguments on a single line
409 * set to 2 : trace one argument per line
410 */
Yann E. MORIN35c666e2014-03-03 23:55:05 +0100411 if ((env_debug = getenv("BR2_DEBUG_WRAPPER"))) {
Yann E. MORIN60cb2902013-09-21 00:00:30 +0200412 debug = atoi(env_debug);
413 if (debug > 0) {
414 fprintf(stderr, "Toolchain wrapper executing:");
Arnout Vandecappellef4682cf2015-10-04 16:25:00 +0100415#ifdef BR_CCACHE_HASH
416 fprintf(stderr, "%sCCACHE_COMPILERCHECK='string:" BR_CCACHE_HASH "'",
417 (debug == 2) ? "\n " : " ");
418#endif
Arnout Vandecappelle1e97b272015-10-04 16:25:32 +0100419#ifdef BR_CCACHE_BASEDIR
420 fprintf(stderr, "%sCCACHE_BASEDIR='" BR_CCACHE_BASEDIR "'",
421 (debug == 2) ? "\n " : " ");
422#endif
Arnout Vandecappelle792f1272015-10-04 13:28:56 +0100423 for (i = 0; exec_args[i]; i++)
Yann E. MORIN60cb2902013-09-21 00:00:30 +0200424 fprintf(stderr, "%s'%s'",
Arnout Vandecappelle792f1272015-10-04 13:28:56 +0100425 (debug == 2) ? "\n " : " ", exec_args[i]);
Yann E. MORIN60cb2902013-09-21 00:00:30 +0200426 fprintf(stderr, "\n");
427 }
Yann E. MORINaaa06aa2013-07-18 23:54:50 +0200428 }
429
Arnout Vandecappellef4682cf2015-10-04 16:25:00 +0100430#ifdef BR_CCACHE_HASH
431 /* Allow compilercheck to be overridden through the environment */
432 if (setenv("CCACHE_COMPILERCHECK", "string:" BR_CCACHE_HASH, 0)) {
433 perror(__FILE__ ": Failed to set CCACHE_COMPILERCHECK");
434 return 3;
435 }
436#endif
Arnout Vandecappelle1e97b272015-10-04 16:25:32 +0100437#ifdef BR_CCACHE_BASEDIR
438 /* Allow compilercheck to be overridden through the environment */
439 if (setenv("CCACHE_BASEDIR", BR_CCACHE_BASEDIR, 0)) {
440 perror(__FILE__ ": Failed to set CCACHE_BASEDIR");
441 return 3;
442 }
443#endif
Arnout Vandecappellef4682cf2015-10-04 16:25:00 +0100444
Arnout Vandecappelle792f1272015-10-04 13:28:56 +0100445 if (execv(exec_args[0], exec_args))
Peter Korsgaard85dc57f2011-04-29 13:09:26 +0200446 perror(path);
447
Daniel Nyströme8c46b12011-06-21 21:54:27 +0200448 free(args);
449
Peter Korsgaard85dc57f2011-04-29 13:09:26 +0200450 return 2;
451}