From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from integral2.. (unknown [180.245.197.13]) by gnuweeb.org (Postfix) with ESMTPSA id C5284800BA; Wed, 29 Jun 2022 00:28:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1656462523; bh=xxtuR21w6prt5YvyZJHHtTVW6LyjbO6UFx3Rrcqdgxg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=daSUZQxD7OG5ILMdVUJpU/xhHeNyv5dhbxVCRHd8jMFLq3nXvh88mFyjeiFIYRamA /Tg39GyCBzfvHgosJpNlVTDak28tYmbbzQrOcVkRbGAmFXwoe5qOf3mr0sTwPd3wo4 H5sTlHX7CCkItgpDyGecUSS61bykG3ZTkxEvekcLGYN1xZ3wFMtROAV9FOkHUhO+kH Nfpp89ssrVBv3BE/yVpIxIXzfCiFI3YAIvabkKvdDbg4TfMCLJ3gJecXBan3k7ZSXX F59dKffGcTt2Cw7FjG1TjUeIgyxu9o+aW8w+IFpRK0sqb0WLyNaMGuK0tf6ZaHWH4s 00YvNDNtk/Ibw== From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Alviro Iskandar Setiawan , Fernanda Ma'rouf , Pavel Begunkov , Hao Xu , io-uring Mailing List , GNU/Weeb Mailing List Subject: [PATCH liburing v1 8/9] arch: Enable nolibc support for arm64 Date: Wed, 29 Jun 2022 07:27:52 +0700 Message-Id: <20220629002028.1232579-9-ammar.faizi@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220629002028.1232579-1-ammar.faizi@intel.com> References: <20220629002028.1232579-1-ammar.faizi@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Ammar Faizi Support nolibc build for arm64. Signed-off-by: Ammar Faizi --- src/lib.h | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/src/lib.h b/src/lib.h index 6672cc5..e1419f8 100644 --- a/src/lib.h +++ b/src/lib.h @@ -8,16 +8,19 @@ #define __INTERNAL__LIBURING_LIB_H #if defined(__x86_64__) || defined(__i386__) - #include "arch/x86/lib.h" +#include "arch/x86/lib.h" +#elif defined(__aarch64__) +#include "arch/arm64/lib.h" #else - /* - * We don't have nolibc support for this arch. Must use libc! - */ - #ifdef CONFIG_NOLIBC - #error "This arch doesn't support building liburing without libc" - #endif - /* libc wrappers. */ - #include "arch/generic/lib.h" +/* + * We don't have nolibc support for this arch. Must use libc! + */ +#ifdef CONFIG_NOLIBC +#error "This arch doesn't support building liburing without libc" +#endif + +/* libc wrappers. */ +#include "arch/generic/lib.h" #endif #undef __INTERNAL__LIBURING_LIB_H -- Ammar Faizi