diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-08-01 09:50:39 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-08-01 09:50:39 +0200 |
commit | 106dadfe55dc9007c1de791c174fc9cce79b824a (patch) | |
tree | 824ce8b33f1b9945bb532bd885b9597a4fb27552 | |
parent | cf9ba913445e940dbab95a906e6788ebb2258ef3 (diff) |
x86_64: disable linux groups early
So we enable APIC by default.
-rw-r--r-- | i386/configfrag.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/i386/configfrag.ac b/i386/configfrag.ac index 1a6f5758..cf15c70f 100644 --- a/i386/configfrag.ac +++ b/i386/configfrag.ac @@ -105,6 +105,14 @@ AC_ARG_ENABLE([apic], enable_linux_groups=no [fi] +[case $host_platform:$host_cpu in + at:i?86) + :;; + *) + # Linux glue was only really tested on i386 + enable_linux_groups=no;; +esac] + [if [ x"$enable_linux_groups" != xno ]; then] # Linux glue does not like APIC enable_apic=no |