mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
Map foreign architecture names to FreeBSD naming convention.
Approved by: kib (mentor)
This commit is contained in:
parent
618abe8ba1
commit
475cc570f4
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=230392
@ -146,6 +146,14 @@ uint32_t warn_nocmd; /* command line no-warning flags */
|
||||
time_t now; /* Time at start of make */
|
||||
struct GNode *DEFAULT; /* .DEFAULT node */
|
||||
|
||||
static struct {
|
||||
const char *foreign_name;
|
||||
const char *freebsd_name;
|
||||
} arch_aliases[] = {
|
||||
{ "x86_64", "amd64" },
|
||||
{ "mipsel", "mips" },
|
||||
};
|
||||
|
||||
/**
|
||||
* Exit with usage message.
|
||||
*/
|
||||
@ -939,10 +947,19 @@ main(int argc, char **argv)
|
||||
*/
|
||||
if ((machine = getenv("MACHINE")) == NULL) {
|
||||
static struct utsname utsname;
|
||||
unsigned int i;
|
||||
|
||||
if (uname(&utsname) == -1)
|
||||
err(2, "uname");
|
||||
machine = utsname.machine;
|
||||
|
||||
/* Canonicalize non-FreeBSD naming conventions */
|
||||
for (i = 0; i < sizeof(arch_aliases)
|
||||
/ sizeof(arch_aliases[0]); i++)
|
||||
if (!strcmp(machine, arch_aliases[i].foreign_name)) {
|
||||
machine = arch_aliases[i].freebsd_name;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if ((machine_arch = getenv("MACHINE_ARCH")) == NULL) {
|
||||
|
Loading…
Reference in New Issue
Block a user