]> git.droids-corp.org - dpdk.git/commitdiff
build: remove unnecessary large file support defines
authorBruce Richardson <bruce.richardson@intel.com>
Tue, 28 May 2019 11:07:46 +0000 (12:07 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 3 Jun 2019 21:55:50 +0000 (23:55 +0200)
Since we now always use _FILE_OFFSET_BITS=64 flag when building
DPDK, we can remove the Makefile and C-file #defines setting it
individually for parts of the build.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Luca Boccassi <bluca@debian.org>
examples/vhost_crypto/meson.build
examples/vhost_scsi/meson.build
lib/librte_eal/linux/eal/eal_memalloc.c
lib/librte_eal/linux/eal/eal_memory.c
lib/librte_vhost/Makefile

index 8e9860f03862a482b1deecac1f3dc7f0a3f6b86b..2485f3bd105a4490af10ee04d7f652bc66e71e56 100644 (file)
@@ -9,7 +9,6 @@
 build = dpdk_conf.has('RTE_LIBRTE_VHOST')
 allow_experimental_apis = true
 deps += ['vhost', 'cryptodev']
-cflags += ['-D_FILE_OFFSET_BITS=64']
 sources = files(
        'main.c'
 )
index 2972e4d6137a948a49412a67176f0bbc7a4f2059..77e5201bd71639398793de1f47bb785bfd2b3144 100644 (file)
@@ -15,7 +15,6 @@ if not cc.has_header('linux/virtio_scsi.h')
 endif
 
 deps += 'vhost'
-cflags += ['-D_FILE_OFFSET_BITS=64']
 sources = files(
        'scsi.c', 'vhost_scsi.c'
 )
index 1e9ebb86dd1bd26e608db58946215f130d22d59d..b1849a28ad08e1eeb0183fa634ddd7d610e855fe 100644 (file)
@@ -2,7 +2,6 @@
  * Copyright(c) 2017-2018 Intel Corporation
  */
 
-#define _FILE_OFFSET_BITS 64
 #include <errno.h>
 #include <stdarg.h>
 #include <stdbool.h>
index 416dad898f62d5e011a5d29ee3999a5a3ac767de..40a0f687ada595315feca39f247da01bf0ed55ce 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright(c) 2013 6WIND S.A.
  */
 
-#define _FILE_OFFSET_BITS 64
 #include <errno.h>
 #include <fcntl.h>
 #include <stdarg.h>
index 5dd3189879c68e943cda78226b15ad1e353194f8..8623e91c0f3be295019d18349f4694537037ac51 100644 (file)
@@ -11,7 +11,7 @@ EXPORT_MAP := rte_vhost_version.map
 LIBABIVER := 4
 
 CFLAGS += -DALLOW_EXPERIMENTAL_API
-CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3 -D_FILE_OFFSET_BITS=64
+CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3
 CFLAGS += -I vhost_user
 CFLAGS += -fno-strict-aliasing
 LDLIBS += -lpthread