diff options
| author | Manish Pandey <manish.pandey2@arm.com> | 2026-09-07 21:33:45 +0000 |
|---|---|---|
| committer | TrustedFirmware Code Review <review@review.trustedfirmware.org> | 2026-09-07 21:33:45 +0000 |
| commit | 38269bb73d34b4a31100adf208a27e4c28e7d611 (patch) | |
| tree | 0d383dafca63c22ef6cc475ce347a76c641cca50 /lib/zlib | |
| parent | 58f4fe3a0b8b97fd097aff2ec884cc77ac535650 (diff) | |
| parent | d7135a7214e49c6364ba518cdac343aa595a8db8 (diff) | |
| download | arm-trusted-firmware-master.tar.gz arm-trusted-firmware-master.zip | |
* changes:
feat(st): enable some warning flags
feat(build): enable -Wundef for C files if W >= 1
refactor(zlib): move zlib to a lib
refactor(compiler-rt): move compiler_rt to a lib
feat(build): introduce BL_FLAGS
fix(st-usb): staticize dwc3_dev_init
fix(st): staticize verify_signature
fix(stm32mp1): manage all flags for PKA algos
refactor(st-clock): remove STM32MP_M33_TDCID flag
fix(xlat): check definition of PLAT_XLAT_TABLES_DYNAMIC flag
fix(el3-runtime): add some missing prototypes
fix(scmi): remove scmi_msg_get_voltage_handler
fix(io): correct SIZE_MAX management
fix(libc): define __BSD_VISIBLE to 0
fix(build): move FIRME_SUPPORT flags to Makefile
Diffstat (limited to 'lib/zlib')
| -rw-r--r-- | lib/zlib/zlib.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/zlib/zlib.mk b/lib/zlib/zlib.mk index a8937a776..9c0458fad 100644 --- a/lib/zlib/zlib.mk +++ b/lib/zlib/zlib.mk @@ -7,7 +7,7 @@ ZLIB_PATH := lib/zlib # Imported from zlib 1.2.11 (do not modify them) -ZLIB_SOURCES := $(addprefix $(ZLIB_PATH)/, \ +LIBZLIB_SRCS := $(addprefix $(ZLIB_PATH)/, \ adler32.c \ crc32.c \ inffast.c \ @@ -16,10 +16,10 @@ ZLIB_SOURCES := $(addprefix $(ZLIB_PATH)/, \ zutil.c) # Implemented for TF -ZLIB_SOURCES += $(addprefix $(ZLIB_PATH)/, \ +LIBZLIB_SRCS += $(addprefix $(ZLIB_PATH)/, \ tf_gunzip.c) INCLUDES += -Iinclude/lib/zlib -# REVISIT: the following flags need not be given globally -TF_CFLAGS += -DZ_SOLO -DDEF_WBITS=31 +LIBZLIB_CFLAGS := -DZ_SOLO -DDEF_WBITS=31 +$(eval $(call MAKE_LIB,zlib)) |
