mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-15 22:58:09 +02:00
Add Null libs for Stack Check and Stack Check Failure Hook Lib that allow a platform to opt out of stack checks and the stack check failure hook lib. StackCheckLib allows implementation (or in this case null implementation) of stack checks on binaries. There is a Host Application specific version of this null lib because MSVC host applications must not be linked against our lib (so the file here is a no-op but that doesn't cause the build system to fail the build for not building a file for MSVC) as it links against the MSVC C runtime lib that provides the stack cookie definitions. GCC host applications do not link against such a C runtime lib and must be linked against our version. StackCheckFailureHookLib lets a platform do custom functionality when a stack check failure occurs (such as log it to a platform defined mechanism). The null lib simply returns. Signed-off-by: Oliver Smith-Denny <osde@linux.microsoft.com>
35 lines
1.5 KiB
INI
35 lines
1.5 KiB
INI
## @file
|
|
# Null library instance for StackCheckLib which can be included
|
|
# when a build needs to include stack check functions but does
|
|
# not want to generate stack check failures. This instance is used
|
|
# for HOST_APPLICATIONS specifically, as MSVC host applications link
|
|
# to the C runtime lib that contains the stack cookie definitions, so
|
|
# must link to a completely null version of this lib, whereas GCC host
|
|
# host applications do not link to a C runtime lib that contains the stack
|
|
# cookie definitions, so we must link against our version.
|
|
#
|
|
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 1.29
|
|
BASE_NAME = StackCheckLibNullHostApplication
|
|
FILE_GUID = 7EBE7BD1-0D92-4609-89AA-6EA3815CB844
|
|
MODULE_TYPE = HOST_APPLICATION
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = StackCheckLib|HOST_APPLICATION
|
|
|
|
[Sources]
|
|
StackCheckLibHostApplicationMsvc.c | MSFT
|
|
StackCheckLibNullGcc.c | GCC
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
|
|
[BuildOptions]
|
|
# We cannot build the GCC version with LTO (link time optimization) because we run into linker errors where
|
|
# the stack cookie variable has been optimized away, as it looks to GCC like the variable is not used, because
|
|
# the compiler inserts the usage. We do not worry about the MSVC version here as it is a no-op.
|
|
GCC:*_*_*_CC_FLAGS = -fno-lto
|