2011-04-29 19:09:26 +08:00
|
|
|
/**
|
|
|
|
* Buildroot wrapper for external toolchains. This simply executes the real
|
|
|
|
* toolchain with a number of arguments (sysroot/arch/..) hardcoded,
|
|
|
|
* to ensure the external toolchain uses the correct configuration.
|
2012-07-15 09:12:05 +08:00
|
|
|
* The hardcoded path arguments are defined relative to the actual location
|
|
|
|
* of the binary.
|
2011-04-29 19:09:26 +08:00
|
|
|
*
|
|
|
|
* (C) 2011 Peter Korsgaard <jacmet@sunsite.dk>
|
2011-06-22 03:54:27 +08:00
|
|
|
* (C) 2011 Daniel Nyström <daniel.nystrom@timeterminal.se>
|
2012-07-15 09:12:05 +08:00
|
|
|
* (C) 2012 Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
|
2011-04-29 19:09:26 +08:00
|
|
|
*
|
|
|
|
* This file is licensed under the terms of the GNU General Public License
|
|
|
|
* version 2. This program is licensed "as is" without any warranty of any
|
|
|
|
* kind, whether express or implied.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <unistd.h>
|
2011-06-22 03:54:27 +08:00
|
|
|
#include <stdlib.h>
|
2011-04-29 19:09:26 +08:00
|
|
|
|
2012-07-15 09:12:05 +08:00
|
|
|
static char path[PATH_MAX];
|
|
|
|
static char sysroot[PATH_MAX];
|
2011-04-29 19:09:26 +08:00
|
|
|
|
2011-06-22 03:54:27 +08:00
|
|
|
static char *predef_args[] = {
|
2011-04-29 19:09:26 +08:00
|
|
|
path,
|
2012-07-15 09:12:05 +08:00
|
|
|
"--sysroot", sysroot,
|
2011-04-29 19:09:26 +08:00
|
|
|
#ifdef BR_ARCH
|
|
|
|
"-march=" BR_ARCH,
|
|
|
|
#endif /* BR_ARCH */
|
|
|
|
#ifdef BR_TUNE
|
|
|
|
"-mtune=" BR_TUNE,
|
|
|
|
#endif /* BR_TUNE */
|
2011-11-01 20:19:16 +08:00
|
|
|
#ifdef BR_CPU
|
|
|
|
"-mcpu=" BR_CPU,
|
|
|
|
#endif
|
2011-04-29 19:09:26 +08:00
|
|
|
#ifdef BR_ABI
|
|
|
|
"-mabi=" BR_ABI,
|
|
|
|
#endif
|
arch: introduce BR2_GCC_TARGET_{FPU, FLOAT_ABI}
Buildroot already has the BR2_GCC_TARGET_{TUNE,ARCH,ABI,CPU} hidden
kconfig strings that allow per-architecture Config.in files to feed
the appropriate values of --with-{tune,arch,abi-cpu} when building
gcc, or the appropriate flags for the external toolchain wrapper.
This commit has two additional options:
BR2_GCC_TARGET_{FPU,FLOAT_ABI}, that allows to define the
--with-{fpu,float} gcc configure options for the internal backend, or
the -m{fpu,float-abi} options for the flags of the external toolchain
wrapper.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2013-07-16 16:03:12 +08:00
|
|
|
#ifdef BR_FLOAT_ABI
|
|
|
|
"-mfloat-abi=" BR_FLOAT_ABI,
|
|
|
|
#endif
|
|
|
|
#ifdef BR2_FPU
|
|
|
|
"-mfpu=" BR_FPU,
|
|
|
|
#endif
|
2011-04-29 19:09:26 +08:00
|
|
|
#ifdef BR_SOFTFLOAT
|
|
|
|
"-msoft-float",
|
|
|
|
#endif /* BR_SOFTFLOAT */
|
2013-07-16 16:03:22 +08:00
|
|
|
#ifdef BR_MODE
|
|
|
|
"-m" BR_MODE,
|
|
|
|
#endif
|
2012-03-14 06:30:00 +08:00
|
|
|
#ifdef BR_64
|
|
|
|
"-m64",
|
|
|
|
#endif
|
2013-05-03 08:39:34 +08:00
|
|
|
#ifdef BR_BINFMT_FLAT
|
|
|
|
"-Wl,-elf2flt",
|
|
|
|
#endif
|
2011-12-31 19:09:33 +08:00
|
|
|
#ifdef BR_ADDITIONAL_CFLAGS
|
|
|
|
BR_ADDITIONAL_CFLAGS
|
|
|
|
#endif
|
2011-04-29 19:09:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2011-06-22 03:54:27 +08:00
|
|
|
char **args, **cur;
|
2012-07-15 09:12:05 +08:00
|
|
|
char *relbasedir, *absbasedir;
|
|
|
|
char *progpath = argv[0];
|
|
|
|
char *basename;
|
2013-05-29 07:41:19 +08:00
|
|
|
int ret, i, count = 0;
|
2012-07-15 09:12:05 +08:00
|
|
|
|
|
|
|
/* Calculate the relative paths */
|
|
|
|
basename = strrchr(progpath, '/');
|
|
|
|
if (basename) {
|
|
|
|
*basename = '\0';
|
|
|
|
basename++;
|
|
|
|
relbasedir = malloc(strlen(progpath) + 7);
|
|
|
|
if (relbasedir == NULL) {
|
|
|
|
perror(__FILE__ ": malloc");
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
sprintf(relbasedir, "%s/../..", argv[0]);
|
|
|
|
absbasedir = realpath(relbasedir, NULL);
|
|
|
|
} else {
|
|
|
|
basename = progpath;
|
2013-05-29 07:41:19 +08:00
|
|
|
absbasedir = malloc(PATH_MAX + 1);
|
|
|
|
ret = readlink("/proc/self/exe", absbasedir, PATH_MAX);
|
|
|
|
if (ret < 0) {
|
|
|
|
perror(__FILE__ ": readlink");
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
absbasedir[ret] = '\0';
|
|
|
|
for (i = ret; i > 0; i--) {
|
|
|
|
if (absbasedir[i] == '/') {
|
|
|
|
absbasedir[i] = '\0';
|
|
|
|
if (++count == 3)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-07-15 09:12:05 +08:00
|
|
|
}
|
|
|
|
if (absbasedir == NULL) {
|
|
|
|
perror(__FILE__ ": realpath");
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill in the relative paths */
|
|
|
|
#ifdef BR_CROSS_PATH_REL
|
|
|
|
ret = snprintf(path, sizeof(path), "%s/" BR_CROSS_PATH_REL "/%s", absbasedir, basename);
|
|
|
|
#else /* BR_CROSS_PATH_ABS */
|
|
|
|
ret = snprintf(path, sizeof(path), BR_CROSS_PATH_ABS "/%s", basename);
|
|
|
|
#endif
|
|
|
|
if (ret >= sizeof(path)) {
|
|
|
|
perror(__FILE__ ": overflow");
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
ret = snprintf(sysroot, sizeof(sysroot), "%s/" BR_SYSROOT, absbasedir);
|
|
|
|
if (ret >= sizeof(sysroot)) {
|
|
|
|
perror(__FILE__ ": overflow");
|
|
|
|
return 3;
|
|
|
|
}
|
2011-04-29 19:09:26 +08:00
|
|
|
|
2011-06-22 03:54:27 +08:00
|
|
|
cur = args = malloc(sizeof(predef_args) + (sizeof(char *) * argc));
|
|
|
|
if (args == NULL) {
|
|
|
|
perror(__FILE__ ": malloc");
|
|
|
|
return 2;
|
2011-04-29 19:09:26 +08:00
|
|
|
}
|
|
|
|
|
2011-06-22 03:54:27 +08:00
|
|
|
/* start with predefined args */
|
|
|
|
memcpy(cur, predef_args, sizeof(predef_args));
|
|
|
|
cur += sizeof(predef_args) / sizeof(predef_args[0]);
|
|
|
|
|
|
|
|
/* append forward args */
|
|
|
|
memcpy(cur, &argv[1], sizeof(char *) * (argc - 1));
|
|
|
|
cur += argc - 1;
|
|
|
|
|
|
|
|
/* finish with NULL termination */
|
|
|
|
*cur = NULL;
|
2011-04-29 19:09:26 +08:00
|
|
|
|
2013-07-19 05:54:50 +08:00
|
|
|
if (getenv("BR_DEBUG_WRAPPER")) {
|
|
|
|
fprintf(stderr, "Executing");
|
|
|
|
|
|
|
|
for (i = 0; args[i]; i++)
|
|
|
|
fprintf(stderr, " %s", args[i]);
|
|
|
|
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
2011-04-29 19:09:26 +08:00
|
|
|
if (execv(path, args))
|
|
|
|
perror(path);
|
|
|
|
|
2011-06-22 03:54:27 +08:00
|
|
|
free(args);
|
|
|
|
|
2011-04-29 19:09:26 +08:00
|
|
|
return 2;
|
|
|
|
}
|