-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path0007-build-disable-apps-and-usertools.patch
43 lines (36 loc) · 1.3 KB
/
0007-build-disable-apps-and-usertools.patch
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
32
33
34
35
36
37
38
39
40
41
42
From 744e58cca9556e59c65d3993115c6f034d57c4f2 Mon Sep 17 00:00:00 2001
From: Tomasz Zawadzki <[email protected]>
Date: Wed, 1 Dec 2021 13:49:30 +0100
Subject: [PATCH 7/7] build: disable apps and usertools
There is no way to disable DPDK apps or usertools
via meson. Disabling tests is possible and already done,
but that only excludes subset of the apps.
This is not required or used by SPDK, meanwhile
increasing build time and size (~2.5G).
Signed-off-by: Tomasz Zawadzki <[email protected]>
Change-Id: I7362360cc43289207724d470ac46c9ddfb7b9105
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/dpdk/+/11239 (spdk-21.11)
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/dpdk/+/12502
(spdk-21.11.1)
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/dpdk/+/14313
Tested-by: SPDK CI Jenkins <[email protected]>
Reviewed-by: Ben Walker <[email protected]>
Reviewed-by: Konrad Sztyber <[email protected]>
---
meson.build | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meson.build b/meson.build
index 21dc51f00d..1ec44a45fc 100644
--- a/meson.build
+++ b/meson.build
@@ -66,8 +66,8 @@ subdir('lib')
subdir('drivers')
# build binaries and installable tools
-subdir('usertools')
-subdir('app')
+#subdir('usertools')
+#subdir('app')
# build docs
subdir('doc')
--
2.31.1