blob: df7420006893deb173dedc1c42de023ecf60beb0 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From d22241efc0708c9799f17a20eabb52a48d6d6ea1 Mon Sep 17 00:00:00 2001
2From: Anuj Mittal <anuj.mittal@intel.com>
3Date: Tue, 2 Jan 2018 12:35:32 +0800
4Subject: [PATCH] Linux: add support for X32 ABI compilation
5
6X32 follows ILP32 model. Check for ILP32 as well when checking for
7x86_64 to ensure the defines are correct for X32 ABI.
8
9Upstream-Status: Submitted [https://github.com/acpica/acpica/pull/348]
10
11Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
12---
13 source/include/platform/aclinux.h | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/source/include/platform/aclinux.h b/source/include/platform/aclinux.h
17index 75b1d82..6b8ff73 100644
18--- a/source/include/platform/aclinux.h
19+++ b/source/include/platform/aclinux.h
20@@ -315,7 +315,7 @@
21 #define ACPI_FLUSH_CPU_CACHE()
22 #define ACPI_CAST_PTHREAD_T(Pthread) ((ACPI_THREAD_ID) (Pthread))
23
24-#if defined(__ia64__) || defined(__x86_64__) ||\
25+#if defined(__ia64__) || (defined(__x86_64__) && !defined(__ILP32__)) ||\
26 defined(__aarch64__) || defined(__PPC64__) ||\
27 defined(__s390x__)
28 #define ACPI_MACHINE_WIDTH 64
29--
302.7.4
31