Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Gramner <gramner@twoorioles.com>2021-08-22 16:54:56 +0300
committerHenrik Gramner <gramner@twoorioles.com>2021-08-26 13:14:16 +0300
commit47a72ea857333f602786658a46c6258c4b4b831c (patch)
treed21258eaf841a93cad528fac10c80947fc540c5d
parent5d14b4e6710057d8f16b1d5259ad1e6accef6f28 (diff)
meson: Explicitly set the recursive argument in extract_all_objects()
Silences warnings when building using recent meson versions.
-rw-r--r--src/meson.build6
-rw-r--r--tests/meson.build2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/meson.build b/src/meson.build
index 039cf61..19846ca 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -291,7 +291,7 @@ libdav1d_entrypoints_objs = static_library('dav1d_entrypoint',
c_args : [stackalign_flag, stackrealign_flag, api_export_flags],
install : false,
build_by_default : false,
-).extract_all_objects()
+).extract_all_objects(recursive: true)
# Helper library for each bitdepth
libdav1d_bitdepth_objs = []
@@ -304,7 +304,7 @@ foreach bitdepth : dav1d_bitdepths
c_args : ['-DBITDEPTH=@0@'.format(bitdepth)] + stackalign_flag,
install : false,
build_by_default : false,
- ).extract_all_objects()
+ ).extract_all_objects(recursive: true)
endforeach
# Helper library for each bitdepth and architecture-specific flags
@@ -317,7 +317,7 @@ foreach bitdepth : dav1d_bitdepths
c_args : ['-DBITDEPTH=@0@'.format(bitdepth)] + stackalign_flag + arch_flags,
install : false,
build_by_default : false,
- ).extract_all_objects()
+ ).extract_all_objects(recursive: true)
endforeach
# The final dav1d library
diff --git a/tests/meson.build b/tests/meson.build
index ac9559d..30358d2 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -58,7 +58,7 @@ if is_asm_enabled
install: false,
build_by_default: false,
)
- checkasm_bitdepth_objs += checkasm_bitdepth_lib.extract_all_objects()
+ checkasm_bitdepth_objs += checkasm_bitdepth_lib.extract_all_objects(recursive: true)
endforeach
checkasm_asm_objs = []