From patchwork Tue Oct 2 13:06:46 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Boccassi X-Patchwork-Id: 45872 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 102675F1D; Tue, 2 Oct 2018 15:07:00 +0200 (CEST) Received: from mail-wm1-f65.google.com (mail-wm1-f65.google.com [209.85.128.65]) by dpdk.org (Postfix) with ESMTP id 3FA845F0D for ; Tue, 2 Oct 2018 15:06:59 +0200 (CEST) Received: by mail-wm1-f65.google.com with SMTP id 189-v6so2193321wmw.2 for ; Tue, 02 Oct 2018 06:06:59 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=U+kaeGmi+20qrmwonf82e5tYi/Wb/Iup4w6MG5t/fV0=; b=N/wlOLiDcb/BZ3buMkVT5fdkcPtidqZVnl0M+ZHGL4T6c5/eO++wKrSirhhFhSXfA0 SxK+Zsb97Yv70psKeZOdf7N7uQTJfdJn6/SmN1wj0/fDcZvuynCoG0rXBfHa7rGic3yB 8Gl6HJ7bC5LIW92NpgIvdbtQW4s1kaaPlp46zoyfrOn8UUrxAYlvi9QheKo5T7l7MRiY rkNCzVW/cUn4ocAUhL84mGl83XNhUyAS/HWOIhJuVMEKZWExrCWTe7vxZ7iyKlN2N2IB rxBsRrLC9p5raCSGLImf2KllbwvDzfwFKoc2oAevj0uhXnxdqbolWizhicdoKq90tj1j +ISA== X-Gm-Message-State: ABuFfog+gNXbvaoXkdWD7rjsWnULixh++x4HjtJj+xzL6hSDiMyp/mV5 mdHfHo6r8amDtCBlVJGGziywbXex X-Google-Smtp-Source: ACcGV632rrMYelXcg8MYfoumTCzGexjHf8rQmf9Qdx3Ve1GAm+pemlQsuPZDxkN47EfcX7m1nTSA5g== X-Received: by 2002:a1c:6504:: with SMTP id z4-v6mr1729434wmb.130.1538485618523; Tue, 02 Oct 2018 06:06:58 -0700 (PDT) Received: from localhost ([2001:1be0:110d:fcfe:ed7d:79a1:9a42:d85f]) by smtp.gmail.com with ESMTPSA id 12-v6sm14336256wms.11.2018.10.02.06.06.57 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 02 Oct 2018 06:06:57 -0700 (PDT) From: Luca Boccassi To: dev@dpdk.org Cc: bruce.richardson@intel.com, tredaelli@redhat.com, christian.ehrhardt@canonical.com, mvarlese@suse.de, Luca Boccassi Date: Tue, 2 Oct 2018 14:06:46 +0100 Message-Id: <20181002130646.14919-2-bluca@debian.org> X-Mailer: git-send-email 2.19.0 In-Reply-To: <20181002130646.14919-1-bluca@debian.org> References: <20180928175803.12955-1-bluca@debian.org> <20181002130646.14919-1-bluca@debian.org> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 2/2] build: add drivers_install_subdir meson option X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" Allow users and packagers to override the default dpdk/drivers subdirectory where the PMDs get installed under $lib. Signed-off-by: Luca Boccassi --- meson.build | 10 ++++++++-- meson_options.txt | 2 ++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 4bd04b9de3..9f7f17f7fe 100644 --- a/meson.build +++ b/meson.build @@ -20,8 +20,14 @@ dpdk_extra_ldflags = [] pver = meson.project_version().split('.') major_version = '@0@.@1@'.format(pver.get(0), pver.get(1)) -driver_install_path = join_paths(get_option('libdir'), 'dpdk', - 'pmds-' + major_version) +pmd_subdir_opt = get_option('drivers_install_subdir') +if pmd_subdir_opt == 'dpdk/pmds-XX.YY' + driver_install_path = join_paths(get_option('libdir'), + 'dpdk', 'pmds-' + major_version) +else + driver_install_path = join_paths(get_option('libdir'), + pmd_subdir_opt) +endif eal_pmd_path = join_paths(get_option('prefix'), driver_install_path) # configure the build, and make sure configs here and in config folder are diff --git a/meson_options.txt b/meson_options.txt index d14bde892d..d0f5675eb7 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,5 +1,7 @@ option('allow_invalid_socket_id', type: 'boolean', value: false, description: 'allow out-of-range NUMA socket id\'s for platforms that don\'t report the value correctly') +option('drivers_install_subdir', type: 'string', value: 'dpdk/pmds-XX.YY', + description: 'Subdirectory of libdir where to install PMDs. Defaults to using a versioned subdirectory.') option('enable_driver_mlx_glue', type: 'boolean', value: false, description: 'Enable glue library for Mellanox PMDs') option('enable_kmods', type: 'boolean', value: true,