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 5531D45962 for ; Wed, 11 Sep 2024 15:39:22 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E3C7B4029E; Wed, 11 Sep 2024 15:39:21 +0200 (CEST) Received: from mail-oa1-f47.google.com (mail-oa1-f47.google.com [209.85.160.47]) by mails.dpdk.org (Postfix) with ESMTP id DC26B40267 for ; Wed, 11 Sep 2024 15:39:20 +0200 (CEST) Received: by mail-oa1-f47.google.com with SMTP id 586e51a60fabf-277dd761926so4300769fac.2 for ; Wed, 11 Sep 2024 06:39:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1726061960; x=1726666760; darn=dpdk.org; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=Kpvwsy9TtNlqamoEto9htAxvhwkUFh4YxAzHQw7Wpx4=; b=aq4N8W+XqJ+8DEmlqsLe/Bl52x8c1eY4trs9FXRLjwsjU/Rnn6SoHrBoMrLWDmMKnp 0sNsRNTacDyVOfsZfv7GZRMETxrZz4zj4kUh4HdMoUbjo/wanf2XuGORtREQZXxxNkoF VbbOoDT4HJo0QL+RngRAWcALC9P8YzT1KfQOJzSko3ob/RV1R2mWWb16JHHnJsGdbAht wJKSIm7rxvp0/WZ4uoUnIY+rMT2W2fzlIweHyMFej3Ig5BKqzCvXzK49fGx+NCO5MsP9 mXLqTsrLTBa1SZ58udniaGuIqCS5aS0yWdPtDHrm4hywXfg1iQ0DLJRMvRYM6/VUUn80 40iQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1726061960; x=1726666760; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=Kpvwsy9TtNlqamoEto9htAxvhwkUFh4YxAzHQw7Wpx4=; b=UGw2+xIv6FDixNUga/d5wqbDbYow1rJwpUbHebI44RWTiCxHxDcIw/yRwHACnX2z8d NHOGUuklW38q3yNA81bNjakxYJhOGDMWhnPs6mq3o1uwX1zKXCOS7q4t+VMCV6DPurx6 KkoucKbgR9zjy2Ngj8c4yvyThpT5TB8kHVF6ucRjHTfXRZZMzoe5n6J1yyDE4jZfmgeM Mut1b2Fmh8laNzZPkauVcoxEvQ+ePXdhSI3g0mpTm34YuhKdgYtyketzyD+BATBqeCTy L1OIJYhXpdfyCk3ap2c0pJJ64Z8YNrrRT1v9TT8Nn3sdbsNv8bK0hq3RRHqeZrfp4h3A 8TMQ== X-Gm-Message-State: AOJu0Yx83z500Ea5TxUK7ietInig/4gvtZwgq0qsyr/lIbLZktP6S/XP 5STODBMYlRMTW4mVSl+rfxYhhz05mt2vGhPCrDPk/XL72oxiNdLpzEhnccNy8V8tfMocioc2Qnz rV28Gf6YP+5/O1JHkVvAGqziuiFNBOk95 X-Google-Smtp-Source: AGHT+IFcN3Uh+QQbaSLXAZxE6Jtsi9Ce8LDscKjLMOTFXHoTi7UDP4jUvZQzE4zfgN8L7pn5S9NTTGQ+dibzfVYGorQ= X-Received: by 2002:a05:6870:1615:b0:254:affe:5a05 with SMTP id 586e51a60fabf-27b82ed40b9mr17194930fac.21.1726061958411; Wed, 11 Sep 2024 06:39:18 -0700 (PDT) MIME-Version: 1.0 From: David Aldrich Date: Wed, 11 Sep 2024 14:39:07 +0100 Message-ID: Subject: How to build DPDK without usertools/dpdk-setup.sh? To: users Content-Type: text/plain; charset="UTF-8" X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: users-bounces@dpdk.org Hi With dpdk v.19.11.14 I built dpdk for target 'x86_64-native-linux-gcc' using usertools/dpdk-setup.sh (option 44). The resulting directory structure included: $ ls dpdk-stable-19.11.14/x86_64-native-linux-gcc app build include kmod lib Makefile I am now moving to dpdk v.20.11.10 in which usertools/dpdk-setup.sh is deprecated. I build with: $ meson -Dexamples=all build $ cd build $ ninja which results in: $ ls build app buildtools config drivers lib meson-logs meson-uninstalled usertools build.ninja compile_commands.json doc examples meson-info meson-private rte_build_config.h which is quite different to the v.19 build. For example, there is now no 'include' directory. I don't want to 'install' because I am experimenting with different dpdk versions. Is it possible to produce a target directory in v.20.11.10 similar to that of dpdk-stable-19.11.14/x86_64-native-linux-gcc? Best regards David