/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */1/******************************************************************************2*3* Name: acenvex.h - Extra host and compiler configuration4*5* Copyright (C) 2000 - 2025, Intel Corp.6*7*****************************************************************************/89#ifndef __ACENVEX_H__10#define __ACENVEX_H__1112/*! [Begin] no source code translation */1314/******************************************************************************15*16* Extra host configuration files. All ACPICA headers are included before17* including these files.18*19*****************************************************************************/2021#if defined(_LINUX) || defined(__linux__)22#include <acpi/platform/aclinuxex.h>2324#elif defined(__DragonFly__)25#include "acdragonflyex.h"2627/*28* EFI applications can be built with -nostdlib, in this case, it must be29* included after including all other host environmental definitions, in30* order to override the definitions.31*/32#elif defined(_AED_EFI) || defined(_GNU_EFI) || defined(_EDK2_EFI)33#include "acefiex.h"3435#endif3637#if defined(__GNUC__)38#include "acgccex.h"3940#elif defined(_MSC_VER)41#include "acmsvcex.h"4243#endif4445/*! [End] no source code translation !*/4647#endif /* __ACENVEX_H__ */484950