blob: fc8828e62dd0322a6e546b46f4cc08fce2b30deb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
From 54d537415c88b52c6cc682db17ecd0b6c077a8bf Mon Sep 17 00:00:00 2001
From: "Tan, Raymond" <raymond.tan@intel.com>
Date: Mon, 12 Apr 2021 08:52:17 +0800
Subject: [PATCH 07/11] qat-use-static-lib-for-linking-under-cpa-sample-code
Upstream-Status: Inappropriate [Configuration]
Update linking target to use stalib library instead, to mitigate error on
hidden symbol "__ctzdi2" being referenced by shared lib (SO) during intel-core2-32 build.
Signed-off-by: Tan, Raymond <raymond.tan@intel.com>
---
quickassist/lookaside/access_layer/src/sample_code/performance/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/quickassist/lookaside/access_layer/src/sample_code/performance/Makefile b/quickassist/lookaside/access_layer/src/sample_code/performance/Makefile
index 3914c1b..a22e366 100644
--- a/quickassist/lookaside/access_layer/src/sample_code/performance/Makefile
+++ b/quickassist/lookaside/access_layer/src/sample_code/performance/Makefile
@@ -319,7 +319,7 @@ ifneq ($(PREBUILD_BINS),0)
ifeq ($(WITH_ICP_TARGET),1)
ADDITIONAL_OBJECTS += $(ICP_BUILD_OUTPUT)/libqae_mem.a
else
- ADDITIONAL_OBJECTS += $(ICP_BUILD_OUTPUT)/libusdm_drv_s.so
+ ADDITIONAL_OBJECTS += $(ICP_BUILD_OUTPUT)/libusdm_drv.a
endif
endif
#endif
--
2.14.5
|