edk2/UnitTestFrameworkPkg/Library/FunctionMockLib/FunctionMockLib.inf
Kun Qin 56e1e04202 UnitTestFrameworkPkg: FunctionMockLib: Do not support AArch64
Current FunctionMockLib is relying on the subhoob module to support the
backend operation by bitbanging the binary post-disassembly.

However subhook module is a x64 centric module and does not support
AArch64 usage.

This change removes the mock function support for AArch64. The
functionality will need other solutions to be properly supported.

Signed-off-by: Kun Qin <kun.qin@microsoft.com>
2026-07-31 15:16:47 +00:00

33 lines
750 B
INI

## @file
# This module provides FunctionMockLib Library implementation.
#
# Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
[Defines]
INF_VERSION = 0x00010018
BASE_NAME = FunctionMockLib
MODULE_UNI_FILE = FunctionMockLib.uni
FILE_GUID = DF1CAF2F-D584-4EC1-9ABF-07E8B10AD560
MODULE_TYPE = HOST_APPLICATION
VERSION_STRING = 0.1
LIBRARY_CLASS = FunctionMockLib
#
# VALID_ARCHITECTURES = IA32 X64
#
[Sources]
FunctionMockLib.c
[LibraryClasses]
GoogleTestLib
[LibraryClasses.IA32, LibraryClasses.X64]
SubhookLib
[Packages]
MdePkg/MdePkg.dec
UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec