From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 9E0FE45FCC; Thu, 2 Jan 2025 23:33:00 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 95B1D402E5; Thu, 2 Jan 2025 23:32:56 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 82C9E402D6 for ; Thu, 2 Jan 2025 23:32:54 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 942F22041A8B; Thu, 2 Jan 2025 14:32:53 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 942F22041A8B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1735857173; bh=n6WJT4QtILfIUel0PrpRisw5ElB3hDaIJcdwX2GO84o=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LccG/LJP5/q8lFHN1ZTMOKKoDf3KUOM4HF5GSvTFhuz5S2GyNTrqP/PAjo3gfqH4R yOZKR+7HNGhhEXIq9IaCFh0ow+xVUTf/BK3t0YiQj2sxeq4mfUfnWC/bAoTtnfdw4L m9sfNhUtKAoY5Jevv25Y+vYVmO7mk6EW9i1/Ci+s= From: Andre Muezerie To: Thomas Monjalon Cc: dev@dpdk.org, Andre Muezerie Subject: [PATCH 1/5] maintainers: add portable version of __builtin_add_overflow Date: Thu, 2 Jan 2025 14:32:44 -0800 Message-Id: <1735857169-19131-2-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1735857169-19131-1-git-send-email-andremue@linux.microsoft.com> References: <1735857169-19131-1-git-send-email-andremue@linux.microsoft.com> X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org __builtin_add_overflow is gcc specific. There's a need for a portable version that can also be used with other compilers. Signed-off-by: Andre Muezerie --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 60bdcce543..4b03b6752e 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -180,6 +180,7 @@ F: app/test/test_devargs.c F: app/test/test_eal* F: app/test/test_errno.c F: app/test/test_lcores.c +F: app/test/test_math.c F: app/test/test_memcpy* F: app/test/test_per_lcore.c F: app/test/test_pflock.c -- 2.47.0.vfs.0.3