doc: define qualification criteria for external library
Checks
Commit Message
From: Jerin Jacob <jerinj@marvell.com>
Define qualification criteria for external library
based on a Techboard meeting minutes [1].
[1]
http://mails.dpdk.org/archives/dev/2019-June/135847.html
Signed-off-by: Jerin Jacob <jerinj@marvell.com>
---
doc/guides/contributing/index.rst | 1 +
doc/guides/contributing/library_dependency.rst | 17 +++++++++++++++++
2 files changed, 18 insertions(+)
create mode 100644 doc/guides/contributing/library_dependency.rst
@@ -15,6 +15,7 @@ Contributor's Guidelines
documentation
unit_test
new_library
+ library_dependency
patches
vulnerability
stable
new file mode 100644
@@ -0,0 +1,17 @@
+.. SPDX-License-Identifier: BSD-3-Clause
+ Copyright(c) 2023 Marvell.
+
+Library dependency
+==================
+
+This document defines the qualification criteria for external libraries that may be
+used as dependencies in DPDK drivers or libraries.
+
+- **Free availability**: The library must be freely available to build in either source or binary
+ form, with a preference for source form.
+
+- **Compiler compatibility**: The library must be able to compile with a DPDK supported compiler
+ for the given execution environment. For example, For Linux, the library must be able to compile
+ with GCC and/or clang.
+
+- **Documentation**: The library must have adequate documentation for the steps to build it.