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>
42 lines
1.5 KiB
INI
42 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.
|
|
#
|
|
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 1.29
|
|
BASE_NAME = StackCheckLibNull
|
|
FILE_GUID = f6ef2763-ca3b-4c6f-a931-2a48de3ce352
|
|
MODULE_TYPE = BASE
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = StackCheckLib
|
|
|
|
[Sources]
|
|
StackCheckLibNullGcc.c | GCC
|
|
StackCheckLibNullMsvc.c | MSFT
|
|
|
|
[Sources.IA32]
|
|
IA32/StackCheckFunctionsMsvc.nasm | MSFT
|
|
|
|
[Sources.X64]
|
|
X64/StackCheckFunctionsMsvc.nasm | MSFT
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
|
|
[BuildOptions]
|
|
# We cannot build the MSVC version with /GL (whole program optimization) because we run into linker error
|
|
# LNK1237, which is a failure to link against a symbol from a library compiled with /GL. The whole program
|
|
# optimization tries to do away with references to this symbol. The solution is to not compile the stack
|
|
# check libs with /GL
|
|
MSFT:*_*_*_CC_FLAGS = /GL-
|
|
|
|
# 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.
|
|
GCC:*_*_*_CC_FLAGS = -fno-lto
|