From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id D10E61B162 for ; Wed, 20 Sep 2017 12:58:08 +0200 (CEST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Sep 2017 03:58:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,421,1500966000"; d="scan'208";a="130625674" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.223]) by orsmga004.jf.intel.com with ESMTP; 20 Sep 2017 03:58:07 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Date: Wed, 20 Sep 2017 11:51:05 +0100 Message-Id: <20170920105107.153935-2-bruce.richardson@intel.com> X-Mailer: git-send-email 2.13.5 In-Reply-To: <20170920105107.153935-1-bruce.richardson@intel.com> References: <20170920105107.153935-1-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH 1/3] build: sort meson options alphabetically 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: , X-List-Received-Date: Wed, 20 Sep 2017 10:58:09 -0000 Wrap each entry at the description value to avoid really long lines also. Signed-off-by: Bruce Richardson --- meson_options.txt | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index fb945db91..29b548f5a 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,10 +1,18 @@ -option('machine', type: 'string', value: 'native', description: 'set the target machine type') -option('max_lcores', type: 'string', value: '128', description: 'maximum number of cores/threads supported by EAL') -option('max_numa_nodes', type: 'string', value: '4', description: 'maximum number of NUMA nodes supported by EAL') -option('use_hpet', type: 'boolean', value: false, description: 'use HPET timer in EAL') 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('enable_kmods', type: 'boolean', value: true, description: 'build kernel modules') -option('kernel_dir', type: 'string', value: '', description: 'path to the kernel for building kernel modules') -option('per_library_versions', type: 'boolean', value: true, description: 'true: each lib gets its own version number, false: DPDK version used for each lib') -option('include_subdir_arch', type: 'string', value: '', description: 'subdirectory where to install arch-dependent headers') +option('enable_kmods', type: 'boolean', value: true, + description: 'build kernel modules') +option('include_subdir_arch', type: 'string', value: '', + description: 'subdirectory where to install arch-dependent headers') +option('kernel_dir', type: 'string', value: '', + description: 'path to the kernel for building kernel modules') +option('machine', type: 'string', value: 'native', + description: 'set the target machine type') +option('max_lcores', type: 'string', value: '128', + description: 'maximum number of cores/threads supported by EAL') +option('max_numa_nodes', type: 'string', value: '4', + description: 'maximum number of NUMA nodes supported by EAL') +option('per_library_versions', type: 'boolean', value: true, + description: 'true: each lib gets its own version number, false: DPDK version used for each lib') +option('use_hpet', type: 'boolean', value: false, + description: 'use HPET timer in EAL') -- 2.13.5