Go to file
David Marchand 56ea803e87 build: remove Windows export symbol list
Rather than have two files that keeps getting out of sync, let's
annotate the version.map to generate the Windows export file.

Some mlx5 symbols (haswell_broadwell_cpu, mlx5_glue, mlx5_os_*) were
only exported for Windows.
All of them are available and used by Linux too, so this patch adds
them in version.map.

Note: Existing version.map annotation achieved with:
$ for dir in lib/librte_eal drivers/common/mlx5; do
    ./buildtools/map-list-symbol.sh $dir/*.map |
    while read file version sym; do
      ! git grep -qw $sym $dir/*.def || continue;
      sed -i -e "s/$sym;/$sym; # WINDOWS_NO_EXPORT/" $dir/*.map;
    done;
  done

Signed-off-by: David Marchand <david.marchand@redhat.com>
Tested-by: Tal Shnaiderman <talshn@nvidia.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
2021-04-08 17:57:33 +02:00
.ci ci: catch coredumps 2021-03-03 10:05:23 +01:00
.github/workflows ci: catch coredumps 2021-03-03 10:05:23 +01:00
app app/testpmd: fix Tx/Rx descriptor query error log 2021-03-30 16:34:48 +02:00
buildtools build: remove Windows export symbol list 2021-04-08 17:57:33 +02:00
config build: detect execinfo library on Linux 2021-03-23 08:41:05 +01:00
devtools build: remove Windows export symbol list 2021-04-08 17:57:33 +02:00
doc pci: rename catch-all ID 2021-04-06 14:52:49 +02:00
drivers build: remove Windows export symbol list 2021-04-08 17:57:33 +02:00
examples examples/vhost_crypto: remove unused short option 2021-03-31 10:02:18 +02:00
kernel build: support KNI cross-compilation 2021-03-15 23:43:40 +01:00
lib build: remove Windows export symbol list 2021-04-08 17:57:33 +02:00
license license: remove pmdinfogen from exceptions 2021-02-05 18:13:19 +01:00
usertools usertools: show hugepages requested/set on failure 2021-03-25 18:07:47 +01:00
.editorconfig devtools: add EditorConfig file 2020-02-22 21:05:22 +01:00
.gitattributes
.gitignore regex/mlx5: introduce driver for BlueField 2 2020-07-21 19:04:05 +02:00
.travis.yml ci: update arm64 Travis jobs to Graviton2 2021-03-02 13:43:38 +01:00
ABI_VERSION version: 21.05-rc0 2021-02-15 11:08:19 +01:00
MAINTAINERS build: remove Windows export symbol list 2021-04-08 17:57:33 +02:00
Makefile build: create dummy Makefile 2020-09-07 23:51:57 +02:00
meson_options.txt ethdev: install driver headers 2021-03-30 14:46:33 +02:00
meson.build build: exclude meson files from examples installation 2021-03-15 20:44:29 +01:00
README license: introduce SPDX identifiers 2018-01-04 22:41:38 +01:00
VERSION version: 21.05-rc0 2021-02-15 11:08:19 +01:00

DPDK is a set of libraries and drivers for fast packet processing.
It supports many processor architectures and both FreeBSD and Linux.

The DPDK uses the Open Source BSD-3-Clause license for the core libraries
and drivers. The kernel components are GPL-2.0 licensed.

Please check the doc directory for release notes,
API documentation, and sample application information.

For questions and usage discussions, subscribe to: users@dpdk.org
Report bugs and issues to the development mailing list: dev@dpdk.org