#
76cef1af |
| 03-Apr-2024 |
Tyler Retzlaff <roretzla@linux.microsoft.com> |
build: exclude rather than include libs in MSVC build
Some libraries that could be built with MSVC were not being built.
Switch from explicit include to exclude of libs to get immediate CI coverage
build: exclude rather than include libs in MSVC build
Some libraries that could be built with MSVC were not being built.
Switch from explicit include to exclude of libs to get immediate CI coverage of libraries that already work with MSVC Windows builds.
Signed-off-by: Tyler Retzlaff <roretzla@linux.microsoft.com> Acked-by: Stephen Hemminger <stephen@networkplumber.org> Acked-by: Morten Brørup <mb@smartsharesystems.com>
show more ...
|
#
8adf5f52 |
| 10-Feb-2022 |
David Marchand <david.marchand@redhat.com> |
stack: fix stubs header export
The stubs header is included as part of rte_stack.h for architectures other than x86_64 and aarch64 (i.e. x86 32 bits and ppc).
Note: chkincs won't catch this issue s
stack: fix stubs header export
The stubs header is included as part of rte_stack.h for architectures other than x86_64 and aarch64 (i.e. x86 32 bits and ppc).
Note: chkincs won't catch this issue since it checks headers from within the source directory.
Fixes: 7911ba0473e0 ("stack: enable lock-free implementation for aarch64") Cc: stable@dpdk.org
Signed-off-by: David Marchand <david.marchand@redhat.com>
show more ...
|
#
99a2dd95 |
| 20-Apr-2021 |
Bruce Richardson <bruce.richardson@intel.com> |
lib: remove librte_ prefix from directory names
There is no reason for the DPDK libraries to all have 'librte_' prefix on the directory names. This prefix makes the directory names longer and also m
lib: remove librte_ prefix from directory names
There is no reason for the DPDK libraries to all have 'librte_' prefix on the directory names. This prefix makes the directory names longer and also makes it awkward to add features referring to individual libraries in the build - should the lib names be specified with or without the prefix. Therefore, we can just remove the library prefix and use the library's unique name as the directory name, i.e. 'eal' rather than 'librte_eal'
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
show more ...
|