From f345e6646db9da68551de7b1aa1623d1002d202e Mon Sep 17 00:00:00 2001 From: Christian Lachner Date: Thu, 2 Jul 2020 07:03:45 +0200 Subject: [PATCH] liburing: Re-enable stack-protection for uClibc targets - Remove -fno-stack-protector for uClibc targets - Make TITLE a little nicer Signed-off-by: Christian Lachner --- libs/liburing/Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libs/liburing/Makefile b/libs/liburing/Makefile index f3968d2f6..409bca3dc 100644 --- a/libs/liburing/Makefile +++ b/libs/liburing/Makefile @@ -20,7 +20,7 @@ include $(INCLUDE_DIR)/package.mk define Package/liburing SECTION:=libs CATEGORY:=Libraries - TITLE:=liburing + TITLE:=io_uring library URL:=https://git.kernel.dk/cgit/liburing endef @@ -37,10 +37,6 @@ ifeq ($(CONFIG_USE_MUSL),y) TARGET_CFLAGS+=-Dloff_t=off_t endif -ifeq ($(CONFIG_USE_UCLIBC),y) - TARGET_CFLAGS+=-fno-stack-protector -endif - define Build/Compile $(MAKE) $(PKG_BUILD_DIR) \ DSTROOT="$(PKG_INSTALL_DIR)"