1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-08-04 15:30:24 +00:00
Files
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

27 lines
858 B
Makefile

# SPDX-License-Identifier: GPL-2.0
#
# Copyright (C) 2018 MediaTek Inc.
#
#==========================================================================
# Trusted Memory Subsystem Options
#==========================================================================
# Enable profiling support
TCORE_PROFILING_SUPPORT := n
# Enable auto dump profiling result at regmgr region off
TCORE_PROFILING_AUTO_DUMP := n
# Enable memory leak detection
TCORE_MEMORY_LEAK_DETECTION_SUPPORT := n
#==========================================================================
# Feature Dependency Auto Changes
#==========================================================================
# Force enable option for ENG build only
ifeq ($(CONFIG_TEST_MTK_TRUSTED_MEMORY),m)
TCORE_PROFILING_SUPPORT := n
TCORE_PROFILING_AUTO_DUMP := n
TCORE_MEMORY_LEAK_DETECTION_SUPPORT := y
endif