diff options
author | Erich Eckner <git@eckner.net> | 2019-05-13 10:39:33 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-05-13 10:39:33 +0200 |
commit | b05869385871ba7048af2aebb421a3519fcae312 (patch) | |
tree | e0a91d11b08062af2a6259f76e26a9bc2904c84f | |
parent | 478e83f5de579fc84688dc8b61e8d399646b4eb8 (diff) | |
download | pacman-b05869385871ba7048af2aebb421a3519fcae312.tar.xz |
change "i686" to "pentium4" if sse2 is available
-rw-r--r-- | src/pacman/conf.c | 5 | ||||
-rw-r--r-- | src/pacman/pacman.c | 9 |
2 files changed, 13 insertions, 1 deletions
diff --git a/src/pacman/conf.c b/src/pacman/conf.c index 3b79fbc7..2325f688 100644 --- a/src/pacman/conf.c +++ b/src/pacman/conf.c @@ -308,6 +308,11 @@ int config_set_arch(const char *arch) struct utsname un; uname(&un); config->arch = strdup(un.machine); + if(strcmp(config->arch, "i686") == 0) { + __builtin_cpu_init(); + if (__builtin_cpu_supports("sse2")) + config->arch = strdup("pentium4"); + } } else { config->arch = strdup(arch); } diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 3bb622e6..abb6f933 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -274,8 +274,15 @@ static void setuseragent(void) int len; uname(&un); + char machine[8]; + strncpy(machine, un.machine, 8); + if(strcmp(machine, "i686") == 0) { + __builtin_cpu_init(); + if (__builtin_cpu_supports("sse2")) + strncpy(machine, "pentium4", 8); + } len = snprintf(agent, 100, "pacman/%s (%s %s) libalpm/%s", - PACKAGE_VERSION, un.sysname, un.machine, alpm_version()); + PACKAGE_VERSION, un.sysname, machine, alpm_version()); if(len >= 100) { pm_printf(ALPM_LOG_WARNING, _("HTTP_USER_AGENT truncated\n")); } |