From 70936f4c92af448af12e239a43c3525e2e006847 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 465fb5c16f..f550326bdd 100644 --- a/components/mbedtls/component.mk +++ b/components/mbedtls/component.mk @@ -75,10 +75,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))