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 96CDAA0032; Fri, 1 Oct 2021 18:37:43 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9131B411BF; Fri, 1 Oct 2021 18:37:34 +0200 (CEST) Received: from mail-lf1-f44.google.com (mail-lf1-f44.google.com [209.85.167.44]) by mails.dpdk.org (Postfix) with ESMTP id C7B4C41166 for ; Fri, 1 Oct 2021 18:37:32 +0200 (CEST) Received: by mail-lf1-f44.google.com with SMTP id u18so41255865lfd.12 for ; Fri, 01 Oct 2021 09:37:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=0jKSkvgzLfcUPR7GZI6zIZ4/OSYOeYO3rDwMfNkiTdU=; b=LgTUDK5/TSucBx4sWJJfiRCKWLQZ7C0KZjlTtIeITfHKD+Z9m68wk4FBrHQQ3Dkbxe /lqDfqj3GzW+0tJBSg0r5aTDfg6nqWstZV5rCCRmDefZWx2S0vWmhoBshcKVqWUOrnRZ 3MPBd6kYJG3rvd9Hnb61IsvFysOROemuVAjgj6EvHOHFFIo01m/sm/MJDBUupcluunGH X1P4r7gmGgZqHqIRFg6XF5FodGYcgELIP6DB9xQiZ6oHafdPToQxGYo6KnbeTVTN3xaF YFg/0AgpzNYPn9NVVAvhoNPo8oqOo4+J7g3Cj2xCU/8Xkm1sRHcEpLDA1h8aam3p8SRO 9daw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=0jKSkvgzLfcUPR7GZI6zIZ4/OSYOeYO3rDwMfNkiTdU=; b=g6Dj6m8DZssSRZ70GFmiqC0S6WvIO5VuGl94d6FTylphogUtvdvYpf4c/W1MtogGku rXP8mL6YJBYUegREW5bPh8pRH7GdFokwKXvGXA64OxDGgGv9YsV8B9812ry8Uw972N6o qcgz5gvGxAPfwtqtZnQHj3rEltuc4HlnaB9Fxdewvko1jfn47fy4Mv+VvHP65KMF6H/4 m8/d5ITEFZoV17UNob0rogn9nE8InRW0PMb3zTpZQxKmnmgtaAYwnRzzEebOE+Parr3y aAop9Seino8rxqr0MBMQwcP0sVgwHj/Kdw9bfChrm1ijpphu2amxVbLEvFzxvBeFNIEQ cIWA== X-Gm-Message-State: AOAM5339ew0RTlZfs+qT8kBplCkmV6xRbFUm5ybkk6l/zwWErOvgnzuP AR3gikGlKPNm8d8Szrn2xXukg+jX18xtjA== X-Google-Smtp-Source: ABdhPJzGQLRQy8hfrUQaTNqzC4FmpIkXRsGflzUz2GzxlwIIlkd9ZJt8HSJQ2C9ZpI3S6VM2TH7ajw== X-Received: by 2002:a2e:1302:: with SMTP id 2mr13358526ljt.280.1633106252215; Fri, 01 Oct 2021 09:37:32 -0700 (PDT) Received: from sovereign.. (broadband-37-110-65-23.ip.moscow.rt.ru. [37.110.65.23]) by smtp.gmail.com with ESMTPSA id b20sm781589lfc.75.2021.10.01.09.37.31 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 01 Oct 2021 09:37:31 -0700 (PDT) From: Dmitry Kozlyuk To: dev@dpdk.org Cc: Dmitry Kozlyuk , bruce.richardson@intel.com Date: Fri, 1 Oct 2021 19:37:26 +0300 Message-Id: <20211001163726.78308-3-dmitry.kozliuk@gmail.com> X-Mailer: git-send-email 2.29.3 In-Reply-To: <20211001163726.78308-1-dmitry.kozliuk@gmail.com> References: <20211001163726.78308-1-dmitry.kozliuk@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 2/2] buildtools: enable chkincs on Windows 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 Sender: "dev" Independent header compilation test (chkincs) was disabled on Windows. The comment stated that the shebang line in the generator script was not working. Meson 0.57.0, currently recommended for Windows, successfully parses that line and invokes the script. Remove the OS restriction as its reason no longer applies. Fixes: 05050ac4ce99 ("build: add header includes check") Cc: bruce.richardson@intel.com Signed-off-by: Dmitry Kozlyuk --- buildtools/chkincs/meson.build | 5 ----- 1 file changed, 5 deletions(-) diff --git a/buildtools/chkincs/meson.build b/buildtools/chkincs/meson.build index 34dcd81ce1..5ffca89761 100644 --- a/buildtools/chkincs/meson.build +++ b/buildtools/chkincs/meson.build @@ -6,11 +6,6 @@ if not get_option('check_includes') subdir_done() endif -if is_windows - # for windows, the shebang line in the script won't work. - error('option "check_includes" is not supported on windows') -endif - gen_c_file_for_header = find_program('gen_c_file_for_header.py') gen_c_files = generator(gen_c_file_for_header, output: '@BASENAME@.c', -- 2.29.3