From: Andrei Tatar Date: Mon, 7 Aug 2023 16:39:50 +0000 (+0200) Subject: Makefile.uk: Remove redundant check for libunwind X-Git-Tag: RELEASE-0.14.0 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=9b869ac5129b626bb1f44775745b6f3f00719dc8;p=unikraft%2Flibs%2Fcompiler-rt.git Makefile.uk: Remove redundant check for libunwind Commit b5b1cf8 (Split off functionality that depends on libunwind) removed the cyclic dependency between libunwind and libcompiler-rt and correctly expressed the relationship through Kconfig, making the build-time check for libunwind in Makefile.uk redundant. This change removes said redundant check. Signed-off-by: Andrei Tatar Reviewed-by: Stefan Jumarea Reviewed-by: Eduard Vintilă Approved-by: Razvan Deaconescu Tested-by: Unikraft CI GitHub-Closes: #19 --- diff --git a/Makefile.uk b/Makefile.uk index 77a49fa..1a29585 100644 --- a/Makefile.uk +++ b/Makefile.uk @@ -38,12 +38,6 @@ ################################################################################ $(eval $(call addlib_s,libcompiler_rt,$(CONFIG_LIBCOMPILER_RT))) -ifeq ($(CONFIG_LIBCOMPILER_RT_GCCPERSONALITY),y) -ifneq ($(CONFIG_LIBUNWIND),y) -$(error Require libunwind) -endif -endif - ################################################################################ # Sources ################################################################################