With symbol versioning its vital that developers test their code in shared library mode, otherwise we'll be playing "add the forgotten symbol export" from here to eternity. By defaulting to shared we should catch more of these cases early, but without taking away anybodys ability to build static.
Signed-off-by: Panu Matilainen <pmatilai at redhat.com> --- config/common_bsdapp | 2 +- config/common_linuxapp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/common_bsdapp b/config/common_bsdapp index 8ff4dc2..76b97be 100644 --- a/config/common_bsdapp +++ b/config/common_bsdapp @@ -76,7 +76,7 @@ CONFIG_RTE_FORCE_INTRINSICS=n # # Compile to share library # -CONFIG_RTE_BUILD_SHARED_LIB=n +CONFIG_RTE_BUILD_SHARED_LIB=y # # Combine to one single library diff --git a/config/common_linuxapp b/config/common_linuxapp index 97f1c9e..1852951 100644 --- a/config/common_linuxapp +++ b/config/common_linuxapp @@ -76,7 +76,7 @@ CONFIG_RTE_FORCE_INTRINSICS=n # # Compile to share library # -CONFIG_RTE_BUILD_SHARED_LIB=n +CONFIG_RTE_BUILD_SHARED_LIB=y # # Combine to one single library -- 2.1.0