From: Vlad-Andrei BĂDOIU (78692) Date: Fri, 30 Aug 2019 12:43:52 +0000 (+0000) Subject: Remove linuxu check X-Git-Tag: RELEASE-0.4~4 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=33002e7d10269b8eeea04ee7568967fc389f24ff;p=unikraft%2Flibs%2Flibunwind.git Remove linuxu check Libunwind now works with the staging branch of Unikraft and therefore we can remove the check for linuxu. Signed-off-by: Vlad-Andrei Badoiu Reviewed-by: Felipe Huici --- diff --git a/Config.uk b/Config.uk index 9f78aee..320363a 100644 --- a/Config.uk +++ b/Config.uk @@ -2,5 +2,4 @@ menuconfig LIBUNWIND bool "libunwind - unwinder" select LIBNOLIBC if !HAVE_LIBC select LIBCOMPILER_RT - depends on !PLAT_LINUXU default n diff --git a/Makefile.uk b/Makefile.uk index 5e27c44..ed6dd01 100644 --- a/Makefile.uk +++ b/Makefile.uk @@ -42,9 +42,6 @@ ifeq ($(CONFIG_LIBUNWIND),y) ifneq ($(CONFIG_LIBCOMPILER_RT),y) $(error Require libcompiler_rt) endif -ifeq ($(CONFIG_PLAT_LINUXU), y) -$(error Libunwind not supported on Linuxu) -endif endif ################################################################################