From a28e0bf0640f61d06f8724084449ddbfef34ee84 Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Thu, 2 Dec 2021 17:13:31 +0530 Subject: [PATCH] mbedtls: remove wrap from component.mk as well Note: This was not required in original MR, as master branch does not support GNU Make. --- components/mbedtls/component.mk | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/mbedtls/component.mk b/components/mbedtls/component.mk index 00e3d20bf0..97565b0983 100644 --- a/components/mbedtls/component.mk +++ b/components/mbedtls/component.mk @@ -89,10 +89,6 @@ WRAP_FUNCTIONS = mbedtls_ssl_handshake_client_step \ COMPONENT_SRCDIRS += port/dynamic endif -ifdef CONFIG_MBEDTLS_HARDWARE_MPI -WRAP_FUNCTIONS += mbedtls_mpi_exp_mod -endif - ifneq ($(origin WRAP_FUNCTIONS),undefined) WRAP_ARGUMENT := -Wl,--wrap= COMPONENT_ADD_LDFLAGS = -l$(COMPONENT_NAME) $(addprefix $(WRAP_ARGUMENT),$(WRAP_FUNCTIONS))