EmulatorPkg/BuildOptions: Add CLANGPDB DLINK_FLAGS flags to build options

[Issue] : There is no DLINK_FLAGS definition for CLANGPDB,
	leading to potential discrepancies in build alignments

[Resolution] : This change adds a CLANGPDB line for DLINK_FLAGS.
	Maintaining the alignment with existing standards in place for
	other compiler packages.

Signed-off-by: Deepak5x <deepakx.singh@intel.com>
This commit is contained in:
Deepak5x Singh
2025-10-08 09:52:11 +05:30
committed by mergify[bot]
parent e49ec97d12
commit aeb27b18ce

View File

@ -539,7 +539,7 @@
#
# CLANGPDB tool chain depends on WIN_HOST_BUILD flag to generate the windows application.
#
GCC:*_CLANGPDB_*_DLINK_FLAGS = /ALIGN:4096 /FILEALIGN:4096
GCC:DEBUG_CLANGPDB_*_DLINK_FLAGS = /BASE:0x10000
GCC:NOOPT_CLANGPDB_*_DLINK_FLAGS = /BASE:0x10000
CLANGPDB: *_*_*_DLINK_FLAGS = /ALIGN:4096 /FILEALIGN:4096
CLANGPDB:DEBUG_*_*_DLINK_FLAGS = /BASE:0x10000
CLANGPDB:NOOPT_*_*_DLINK_FLAGS = /BASE:0x10000
!endif