diff options
author | Chunrong Guo <chunrong.guo@nxp.com> | 2019-07-10 16:01:09 +0800 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2019-07-12 17:18:34 -0300 |
commit | b7bf801bf6fc9c7b210602c933bbb8c42b92518d (patch) | |
tree | b41a271be78d3bf8f7834953965c0226b67393bc /recipes-extended/vpp-core/files/0001-Link-vpp-api-with-shared-libs-if-static-is-disabled.patch | |
parent | 60585d192208ca1cbebe1c7723ebb4c9d4649046 (diff) | |
download | meta-freescale-b7bf801bf6fc9c7b210602c933bbb8c42b92518d.tar.gz |
vpp-core: update to ff7bf7b
*update to lsdk 1906 tag
include the following changes:
ff7bf7b - Merge pull request #32 in DQNS/vpp from ~NXA12342/vpp:19.01.1_devel to 19.01.1
5c2b539 - PVT: ipsec: Fixed capability matching for openssl based sha1 authentication
a24588f - PVT: dpdk_plugin: introducing ipsec protocol offload
33d0d81 - Fixed Flexbuild integration issues
c200b3f - dpdk-ipsec: Fixed ramdom Crash in esp traffic
2a0a031 - Enhanced the VPP startup configuration
05bce64 - Merge pull request #30 in DQNS/vpp from ~NXA19696/vpp:19.01.1 to 19.01.1
c63f8ad - Fixed RPM packaging of VPP libs w.r.t Tag format
85e9d4d - Merge pull request #29 in DQNS/vpp from ~NXA19696/vpp:19.01.1 to 19.01.1
26d2455 - Adding README for NXP platforms
9df88fa - Handled review comments
d66c318 - Fixed Debian packing support for arm64 platform
513a05a - Fix for using Best mem pool ops as per platform
d0f5fa4 - Updating path for cmake cross compile file
fe17e96 - More Compilation Fixes
e64c6ca - Cross compilation & RPM pkging known issues
cbd68cb - 19.01.1 Release Notes
3262adc - cmake: fix out-of-git-tree build
d302022 - Fix vpp crashing when attempting to run in kubernetes Pod
6342e48 - tcp: allow future acks if in window
46ee286 - IPSEC: crash on SA dump when SA are bound to tunnels
bad0bcd - Fix crash in barrier sync when vlib_worker_threads is zero
372a33e - buffer chain linearization
*update PV to "19.01"
*refresh patch
*update DEPENDS
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
Diffstat (limited to 'recipes-extended/vpp-core/files/0001-Link-vpp-api-with-shared-libs-if-static-is-disabled.patch')
-rw-r--r-- | recipes-extended/vpp-core/files/0001-Link-vpp-api-with-shared-libs-if-static-is-disabled.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/recipes-extended/vpp-core/files/0001-Link-vpp-api-with-shared-libs-if-static-is-disabled.patch b/recipes-extended/vpp-core/files/0001-Link-vpp-api-with-shared-libs-if-static-is-disabled.patch deleted file mode 100644 index ae1c9cbc..00000000 --- a/recipes-extended/vpp-core/files/0001-Link-vpp-api-with-shared-libs-if-static-is-disabled.patch +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | From 7005c075cab39c8018d224c2fe56ad2e4f2db340 Mon Sep 17 00:00:00 2001 | ||
2 | From: babak sarashki <babak.sarashki@windriver.com> | ||
3 | Date: Tue, 11 Sep 2018 14:08:51 -0700 | ||
4 | Subject: [PATCH] Link vpp-api with shared libs if static is disabled | ||
5 | |||
6 | TODO: this is not complete | ||
7 | --- | ||
8 | src/vpp-api.am | 4 ++-- | ||
9 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
10 | |||
11 | diff --git a/src/vpp-api.am b/src/vpp-api.am | ||
12 | index 553eafa..30dfe9d 100644 | ||
13 | --- a/src/vpp-api.am | ||
14 | +++ b/src/vpp-api.am | ||
15 | @@ -23,8 +23,8 @@ libvppapiclient_la_LIBADD = \ | ||
16 | -lpthread -lm -lrt | ||
17 | |||
18 | libvppapiclient_la_LDFLAGS = \ | ||
19 | - -Wl,-L$(top_builddir)/.libs,--whole-archive,-l:libsvm.a,-l:libvppinfra.a,-l:libvlibmemoryclient.a,--no-whole-archive \ | ||
20 | - -Wl,--version-script=$(srcdir)/vpp-api/client/libvppapiclient.map,-lrt | ||
21 | + -L$(top_builddir)/.libs -lsvm -lvppinfra -lvlibmemoryclient \ | ||
22 | + -Wl,--version-script=$(srcdir)/vpp-api/client/libvppapiclient.map,-lrt | ||
23 | |||
24 | libvppapiclient_la_DEPENDENCIES = libvppinfra.la libvlibmemoryclient.la libsvm.la | ||
25 | |||
26 | -- | ||
27 | 2.7.4 | ||
28 | |||