diff options
Diffstat (limited to 'recipes-kernel/cryptodev/sdk_patches/0025-fix-benchmarks-linking.patch')
-rw-r--r-- | recipes-kernel/cryptodev/sdk_patches/0025-fix-benchmarks-linking.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/recipes-kernel/cryptodev/sdk_patches/0025-fix-benchmarks-linking.patch b/recipes-kernel/cryptodev/sdk_patches/0025-fix-benchmarks-linking.patch deleted file mode 100644 index 608c6812..00000000 --- a/recipes-kernel/cryptodev/sdk_patches/0025-fix-benchmarks-linking.patch +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | From 978cfcf9253c409520c0f168f8caa249f50a8843 Mon Sep 17 00:00:00 2001 | ||
2 | From: Fridolin Pokorny <fpokorny@redhat.com> | ||
3 | Date: Fri, 8 Jan 2016 09:38:29 +0100 | ||
4 | Subject: [PATCH 25/38] fix benchmarks linking | ||
5 | |||
6 | --- | ||
7 | lib/Makefile | 2 +- | ||
8 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
9 | |||
10 | diff --git a/lib/Makefile b/lib/Makefile | ||
11 | index af87795..3bedc34 100644 | ||
12 | --- a/lib/Makefile | ||
13 | +++ b/lib/Makefile | ||
14 | @@ -3,7 +3,7 @@ CFLAGS=-g -O2 -Wall | ||
15 | all: benchmark | ||
16 | |||
17 | benchmark: main.c libthreshold.a | ||
18 | - gcc $(CFLAGS) -DDEBUG -o $@ $^ -lssl libthreshold.a | ||
19 | + gcc $(CFLAGS) -DDEBUG -o $@ $^ -lssl -lcrypto libthreshold.a | ||
20 | |||
21 | .o: | ||
22 | gcc $(CCFLAGS) -c $< -o $@ | ||
23 | -- | ||
24 | 2.7.0 | ||
25 | |||