aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2021-11-10 18:33:29 -0600
committerDavid Gibson <david@gibson.dropbear.id.au>2021-11-11 14:27:09 +1100
commit5216f3f1bbb70aef463b6cd78dbbb0f4c4c71606 (patch)
tree9cdcf13a045af5671a083e81cd9a13c33f83c3bb
parent4eda2590f481db53318a2f203c85eab3dde4b340 (diff)
downloaddtc-5216f3f1bbb70aef463b6cd78dbbb0f4c4c71606.tar.gz
libfdt: Add static lib to meson build
The meson build is not building the static libfdt, so add it. Signed-off-by: Rob Herring <robh@kernel.org> Message-Id: <20211111003329.2347536-1-robh@kernel.org> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
-rw-r--r--libfdt/meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/libfdt/meson.build b/libfdt/meson.build
index 0307ffb..71f29b6 100644
--- a/libfdt/meson.build
+++ b/libfdt/meson.build
@@ -24,6 +24,11 @@ libfdt = library(
install: true,
)
+libfdt_a = static_library(
+ 'fdt', sources,
+ install: true,
+)
+
libfdt_inc = include_directories('.')
libfdt_dep = declare_dependency(