You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/libplacebo/files/libplacebo-5.229.1-llvm-lib...

10 lines
418 B

llvm-libunwind does not have cmake nor pkg-config files, not great
but switch to cc.find for simplicity with meson feature-type options
--- a/src/meson.build
+++ b/src/meson.build
@@ -1,3 +1,3 @@
### Common dependencies
-unwind = dependency('libunwind', required: get_option('unwind'))
+unwind = cc.find_library('libunwind', required: get_option('unwind'))
libexecinfo = cc.find_library('execinfo', required: false)