]> git.droids-corp.org - dpdk.git/commitdiff
build: set RTE_ARCH_64 based on pointer size
authorBruce Richardson <bruce.richardson@intel.com>
Wed, 26 Sep 2018 09:15:36 +0000 (10:15 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 26 Feb 2019 17:34:28 +0000 (18:34 +0100)
Rather than relying on the target machine architecture, use the
size of a pointer from the compiler to determine if we are 64-bits
or not. This allows correct behaviour when you pass -m32 as a compile
option. It also allows us to use this value repeatedly throughout the
repo rather than continually testing for the sizeof(void*).

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Tested-by: Luca Boccassi <bluca@debian.org>
Acked-by: Luca Boccassi <bluca@debian.org>
config/arm/meson.build
config/meson.build
config/ppc_64/meson.build
config/x86/meson.build
drivers/net/enic/meson.build
drivers/net/sfc/meson.build
lib/librte_bpf/meson.build
lib/librte_kni/meson.build

index dae55d6b268f7c67d0b56d97e810c21b987384dd..4e3bc6a19cd0c3891eac5fbdafc176a7b0c0e489 100644 (file)
@@ -89,7 +89,7 @@ impl_dpaa2 = ['NXP DPAA2', flags_dpaa2, machine_args_generic]
 
 dpdk_conf.set('RTE_FORCE_INTRINSICS', 1)
 
-if cc.sizeof('void *') != 8
+if not dpdk_conf.get('RTE_ARCH_64')
        dpdk_conf.set('RTE_CACHE_LINE_SIZE', 64)
        dpdk_conf.set('RTE_ARCH_ARM', 1)
        dpdk_conf.set('RTE_ARCH_ARMv7', 1)
@@ -99,7 +99,6 @@ if cc.sizeof('void *') != 8
 else
        dpdk_conf.set('RTE_CACHE_LINE_SIZE', 128)
        dpdk_conf.set('RTE_ARCH_ARM64', 1)
-       dpdk_conf.set('RTE_ARCH_64', 1)
 
        machine = []
        cmd_generic = ['generic', '', '', 'default', '']
index db32499b3162d389983206c58f7357f7600077fa..c094c47558098a812d8652f38a59914bc6c17928 100644 (file)
@@ -43,6 +43,8 @@ toolchain = cc.get_id()
 dpdk_conf.set_quoted('RTE_TOOLCHAIN', toolchain)
 dpdk_conf.set('RTE_TOOLCHAIN_' + toolchain.to_upper(), 1)
 
+dpdk_conf.set('RTE_ARCH_64', cc.sizeof('void *') == 8)
+
 add_project_link_arguments('-Wl,--no-as-needed', language: 'c')
 dpdk_extra_ldflags += '-Wl,--no-as-needed'
 
@@ -90,7 +92,7 @@ warning_flags = [
        '-Wcast-qual',
        '-Wno-address-of-packed-member'
 ]
-if cc.sizeof('void *') == 4
+if not dpdk_conf.get('RTE_ARCH_64')
 # for 32-bit, don't warn about casting a 32-bit pointer to 64-bit int - it's fine!!
        warning_flags += '-Wno-pointer-to-int-cast'
 endif
@@ -110,6 +112,7 @@ dpdk_conf.set('RTE_MAX_VFIO_GROUPS', 64)
 dpdk_conf.set('RTE_DRIVER_MEMPOOL_BUCKET_SIZE_KB', 64)
 dpdk_conf.set('RTE_LIBRTE_DPAA2_USE_PHYS_IOVA', true)
 
+
 compile_time_cpuflags = []
 if host_machine.cpu_family().startswith('x86')
        arch_subdir = 'x86'
index e207c438bfecf4ac0227f51c843b4bfe5bbd9a14..7ceae1d39fe22e32494b02bc8acd04267c371120 100644 (file)
@@ -1,9 +1,11 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
 
+if not dpdk_conf.get('RTE_ARCH_64')
+       error('Only 64-bit compiles are supported for this platform type')
+endif
 dpdk_conf.set('RTE_ARCH', 'ppc_64')
 dpdk_conf.set('RTE_ARCH_PPC_64', 1)
-dpdk_conf.set('RTE_ARCH_64', 1)
 
 # overrides specific to ppc64
 dpdk_conf.set('RTE_MAX_LCORE', 256)
index 9e5952aa3e35c7b1b7cb5cc18d9289c18578bf16..7504cb9e5cf79e9037ecbd96f5daaadd4dca0724 100644 (file)
@@ -28,10 +28,9 @@ foreach f:base_flags
 endforeach
 
 dpdk_conf.set('RTE_ARCH_X86', 1)
-if (host_machine.cpu_family() == 'x86_64')
+if dpdk_conf.get('RTE_ARCH_64')
        dpdk_conf.set('RTE_ARCH_X86_64', 1)
        dpdk_conf.set('RTE_ARCH', 'x86_64')
-       dpdk_conf.set('RTE_ARCH_64', 1)
 else
        dpdk_conf.set('RTE_ARCH_I686', 1)
        dpdk_conf.set('RTE_ARCH', 'i686')
index 064487118e9e4512a3bac6613e3df1dd73a25e6d..9e9a567ae5064803fc923d4748f7429fafd39cfa 100644 (file)
@@ -19,13 +19,13 @@ deps += ['hash']
 includes += include_directories('base')
 
 # The current implementation assumes 64-bit pointers
-if dpdk_conf.has('RTE_MACHINE_CPUFLAG_AVX2') and cc.sizeof('void *') == 8
+if dpdk_conf.has('RTE_MACHINE_CPUFLAG_AVX2') and dpdk_conf.get('RTE_ARCH_64')
        sources += files('enic_rxtx_vec_avx2.c')
 # Build the avx2 handler if the compiler supports it, even though 'machine'
 # does not. This is to support users who build for the min supported machine
 # and need to run the binary on newer CPUs too.
 # This part is from i40e meson.build
-elif cc.has_argument('-mavx2') and cc.sizeof('void *') == 8
+elif cc.has_argument('-mavx2') and dpdk_conf.get('RTE_ARCH_64')
        enic_avx2_lib = static_library('enic_avx2_lib',
                        'enic_rxtx_vec_avx2.c',
                        dependencies: [static_rte_ethdev, static_rte_bus_pci],
index 2d34e869d86ea308ae49a5700d797e3d1bc5ed0b..e67560991a0fe4335087bf0ad99ed2b35a2da24b 100644 (file)
@@ -6,7 +6,7 @@
 # This software was jointly developed between OKTET Labs (under contract
 # for Solarflare) and Solarflare Communications, Inc.
 
-if arch_subdir != 'x86' or cc.sizeof('void *') == 4
+if arch_subdir != 'x86' or not dpdk_conf.get('RTE_ARCH_64')
        build = false
 endif
 
index bc0cd78f90635b5101778703b6bc2980cbca614a..4fbb29d7c34645bc7e2043e2dc0a26dd515153ca 100644 (file)
@@ -8,7 +8,7 @@ sources = files('bpf.c',
                'bpf_pkt.c',
                'bpf_validate.c')
 
-if arch_subdir == 'x86' and cc.sizeof('void *') == 8
+if arch_subdir == 'x86' and dpdk_conf.get('RTE_ARCH_64')
        sources += files('bpf_jit_x86.c')
 endif
 
index a738a033ac6f4e21d0277c2f222aa266e35adafb..055ae12270fde9771c69cae05b31bc6ebca23dd8 100644 (file)
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-if host_machine.system() != 'linux' or cc.sizeof('void *') == 4
+if host_machine.system() != 'linux' or not dpdk_conf.get('RTE_ARCH_64')
        build = false
 endif
 version = 2