Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

android-ndk: Use clang for AS & LD as per docs. #23346

Merged
merged 10 commits into from
Jun 19, 2024

Conversation

sizeak
Copy link
Contributor

@sizeak sizeak commented Apr 2, 2024

Specify library name and version: android-ndk/*

I've been migrating our build to using the android-ndk package as a tool requirement instead of using an external NDK, however with the android-ndk package I am unable to build ffmpeg. This seems to be because my Android profile used different settings for AS and LD to the android-ndk package.

My external NDK settings used those recommended by the NDK documentation and pointed AS and LD at clang rather than at the separate binaries, letting clang invoke them as needed. The docs here state:

Note: It is usually not necessary to invoke the linkers directly since Clang will do so automatically. Clang will also automatically link CRT objects and default libraries and set up other target-specific options, so it is generally better to use Clang for linking.

and similarly about as:

Note that llvm-as is not an equivalent of GNU as, but rather a tool for assembling LLVM IR. If you are currently using as directly, you will need to migrate to using clang as a driver for building assembly.

This PR changes the recipe so that AS and LD are set to the same values as CC / CXX, which allows my ffmpeg build to succeed. I've been using these settings in my profile with an external NDK for years without issue, but obviously I am unable to verify that every recipe will still build successfully; however, given that these are the official recommendations for these variables, I am inclined to prefer them.

I've set the value of LD to the value of CXX (i.e. clang++) rather than CC because the docs state

When linking, clang should be used if the binary being linked contains no C++ code (i.e. none of the object files being linked were generated from C++ files) and clang++ should be used otherwise. Using clang++ ensures that the C++ standard library is linked.

and I don't think we can know whether the consumer of this package will be building purely C or not, so it seems safer to use CXX since this will work for both.

Fixes #23342


@conan-center-bot

This comment has been minimized.

Copy link
Contributor

github-actions bot commented Apr 2, 2024

Hooks produced the following warnings for commit 1706626
android-ndk/r23b@#9fabefce0c54ef2e3349e09173d26795
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'Foundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'Foundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libRemarks.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang-cpp.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libLTO.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libLLVM.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang_cxx.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/python3/lib/libpython3.9.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang-cpp.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'Security' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'Security' but it is not in cpp_info.frameworks.

@AbrilRBS AbrilRBS self-assigned this Apr 5, 2024
@AbrilRBS
Copy link
Member

AbrilRBS commented Apr 5, 2024

Thanks a lot for such a detailed explanation and proper doc sourcing, it's really appreciated! I've passed this around those in the team that have more Android experience than I do, let's see what they have to say, but looks great on my side, thanks! :)

@uilianries
Copy link
Member

@sizeak Thank you for providing this PR. I'm trying to track more documentation about the recommended configuration, and for Autotools it goes exactly how we are using: https://developer.android.com/ndk/guides/other_build_systems#autoconf

So I would like to ask you a full build log using your configuration that actually works, so we can see diff of ld and ar usage.

It could be a problem with ffmpeg trying to pass more arguments than supported too ....

@sizeak
Copy link
Contributor Author

sizeak commented Apr 8, 2024

Hi, sorry, I might be misunderstanding you, however the android-ndk recipe it not currently following the recommendations in the documentation at that link because the recipe uses as directly and the documentation for Autotools is:

export AS=$CC

I made the linker change because it was required to get my build working along with the mentioned as change and because it is also the recommended setting in the "Build System Maintainers Guide" directly from the NDK source repository master branch.

I'll follow up with a build log in a little while.

@sizeak
Copy link
Contributor Author

sizeak commented Apr 8, 2024

Here is the successful build output of a cut down ffmpeg build made with the android-ndk recipe package built locally with the changes from this PR.

Click to expand log
======== Input profiles ========
Profile host:
[settings]
arch=armv8
build_type=Release
compiler=clang
compiler.cppstd=20
compiler.libcxx=c++_static
compiler.version=14
os=Android
os.api_level=33
[options]
ffmpeg/*:disable_everything=True
ffmpeg/*:enable_decoders=mp3
ffmpeg/*:enable_demuxers=mp3
ffmpeg/*:enable_encoders=pcm_s16le
ffmpeg/*:enable_muxers=mp3
ffmpeg/*:with_appkit=False
ffmpeg/*:with_audiotoolbox=False
ffmpeg/*:with_avfoundation=False
ffmpeg/*:with_bzip2=False
ffmpeg/*:with_coreimage=False
ffmpeg/*:with_freetype=False
ffmpeg/*:with_libalsa=False
ffmpeg/*:with_libaom=False
ffmpeg/*:with_libdav1d=False
ffmpeg/*:with_libfdk_aac=False
ffmpeg/*:with_libiconv=False
ffmpeg/*:with_libmp3lame=False
ffmpeg/*:with_libsvtav1=False
ffmpeg/*:with_libvpx=False
ffmpeg/*:with_libwebp=False
ffmpeg/*:with_libx264=False
ffmpeg/*:with_libx265=False
ffmpeg/*:with_lzma=False
ffmpeg/*:with_openh264=False
ffmpeg/*:with_openjpeg=False
ffmpeg/*:with_opus=False
ffmpeg/*:with_programs=False
ffmpeg/*:with_pulse=False
ffmpeg/*:with_sdl=False
ffmpeg/*:with_ssl=False
ffmpeg/*:with_vaapi=False
ffmpeg/*:with_vdpau=False
ffmpeg/*:with_videotoolbox=False
ffmpeg/*:with_vorbis=False
ffmpeg/*:with_vulkan=False
ffmpeg/*:with_xcb=False
ffmpeg/*:with_zeromq=False
ffmpeg/*:with_zlib=False
[tool_requires]
*: android-ndk/r25
[conf]
tools.cmake.cmake_layout:build_folder_vars=['settings.arch', 'settings.os']

Profile build:
[settings]
arch=x86_64
build_type=Release
compiler=gcc
compiler.cppstd=gnu23
compiler.libcxx=libstdc++11
compiler.version=12
os=Linux
[conf]



======== Computing dependency graph ========
Graph root
    conanfile.py (ffmpeg/6.1): /home/si/Projects/conan-center-index/recipes/ffmpeg/all/conanfile.py
Build requirements
    android-ndk/r25#623af355b8c555d8542045823120102b - Cache
    meson/1.2.2#04bdfb85d665c82b08a3510aee3ffd19 - Cache
    ninja/1.11.1#77587f8c8318662ac8e5a7867eb4be21 - Cache
    pkgconf/2.1.0#27f44583701117b571307cf5b5fe5605 - Cache

======== Computing necessary packages ========
Build requirements
    android-ndk/r25#623af355b8c555d8542045823120102b:63fead0844576fc02943e16909f08fcdddd6f44b#9d9e076d8d3e738e85193aaa10c7e46c - Cache
    pkgconf/2.1.0#27f44583701117b571307cf5b5fe5605:c0b621fd4b3199fe05075171573398833dba85f4#74a82dec52448dda20253a19d65965c7 - Cache
Skipped binaries
    meson/1.2.2, ninja/1.11.1

======== Installing packages ========

======== Installing packages ========
android-ndk/r25: Already installed! (1 of 2)
pkgconf/2.1.0: Already installed! (2 of 2)
pkgconf/2.1.0: WARN: The use of 'unix_path_legacy_compat' is deprecated in Conan 2.0 and does not perform path conversions. This is retained for compatibility with Conan 1.x and will be removed in a future version.
WARN: deprecated: Usage of deprecated Conan 1.X features that will be removed in Conan 2.X:
WARN: deprecated:     'env_info' used in: pkgconf/2.1.0

======== Finalizing install (deploy, generators) ========
conanfile.py (ffmpeg/6.1): Calling generate()
conanfile.py (ffmpeg/6.1): Generators folder: /home/si/Projects/conan-center-index/recipes/ffmpeg/all/build-release/conan
conanfile.py (ffmpeg/6.1): Generating aggregated env files
conanfile.py (ffmpeg/6.1): Generated aggregated env files: ['conanbuild.sh', 'conanrun.sh']

======== Calling build() ========
conanfile.py (ffmpeg/6.1): Calling build()
conanfile.py (ffmpeg/6.1): Calling:
 > "/home/si/Projects/conan-center-index/recipes/ffmpeg/all/src/configure" --disable-shared --enable-static --prefix=/ '--bindir=${prefix}/bin' '--libdir=${prefix}/lib' --pkg-config-flags=--static --disable-doc --enable-cross-compile --enable-asm --disable-shared --enable-static --enable-pic --enable-avdevice --enable-avcodec --enable-avformat --enable-swresample --enable-swscale --enable-postproc --enable-avfilter --disable-bzlib --disable-zlib --disable-lzma --disable-iconv --disable-libopenjpeg --disable-libopenh264 --disable-libvorbis --disable-libopus --disable-libzmq --disable-sdl2 --disable-libx264 --disable-libx265 --disable-libvpx --disable-libmp3lame --disable-libfdk-aac --disable-libwebp --disable-libaom --disable-openssl --disable-alsa --disable-libpulse --disable-vaapi --disable-vdpau --disable-libxcb --disable-libxcb-shm --disable-libxcb-shape --disable-libxcb-xfixes --disable-appkit --disable-avfoundation --disable-coreimage --disable-audiotoolbox --disable-videotoolbox --disable-securetransport --disable-cuda --disable-cuvid --disable-nonfree --enable-gpl --disable-everything --enable-encoder=pcm_s16le --enable-decoder=mp3 --enable-muxer=mp3 --enable-demuxer=mp3 --disable-vulkan --disable-libsvtav1 --disable-libdav1d --arch=aarch64 --disable-programs --nm=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-nm --ar=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-ar --as=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang --strip=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip --cc=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang --cxx=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang++ --ld=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang++ --ranlib=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-ranlib --target-os=android '--extra-cflags=-fPIC --sysroot /home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot -O3' '--extra-ldflags=--sysroot /home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot' 
conanfile.py (ffmpeg/6.1): RUN: "/home/si/Projects/conan-center-index/recipes/ffmpeg/all/src/configure" --disable-shared --enable-static --prefix=/ '--bindir=${prefix}/bin' '--libdir=${prefix}/lib' --pkg-config-flags=--static --disable-doc --enable-cross-compile --enable-asm --disable-shared --enable-static --enable-pic --enable-avdevice --enable-avcodec --enable-avformat --enable-swresample --enable-swscale --enable-postproc --enable-avfilter --disable-bzlib --disable-zlib --disable-lzma --disable-iconv --disable-libopenjpeg --disable-libopenh264 --disable-libvorbis --disable-libopus --disable-libzmq --disable-sdl2 --disable-libx264 --disable-libx265 --disable-libvpx --disable-libmp3lame --disable-libfdk-aac --disable-libwebp --disable-libaom --disable-openssl --disable-alsa --disable-libpulse --disable-vaapi --disable-vdpau --disable-libxcb --disable-libxcb-shm --disable-libxcb-shape --disable-libxcb-xfixes --disable-appkit --disable-avfoundation --disable-coreimage --disable-audiotoolbox --disable-videotoolbox --disable-securetransport --disable-cuda --disable-cuvid --disable-nonfree --enable-gpl --disable-everything --enable-encoder=pcm_s16le --enable-decoder=mp3 --enable-muxer=mp3 --enable-demuxer=mp3 --disable-vulkan --disable-libsvtav1 --disable-libdav1d --arch=aarch64 --disable-programs --nm=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-nm --ar=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-ar --as=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang --strip=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip --cc=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang --cxx=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang++ --ld=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang++ --ranlib=/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-ranlib --target-os=android '--extra-cflags=-fPIC --sysroot /home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot -O3' '--extra-ldflags=--sysroot /home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot' 
install prefix            /
source path               /home/si/Projects/conan-center-index/recipes/ffmpeg/all/src
C compiler                /home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang
C library                 bionic
host C compiler           gcc
host C library            glibc
ARCH                      aarch64 (generic)
big-endian                no
runtime cpu detection     yes
NEON enabled              yes
DOTPROD enabled           no
I8MM enabled              no
debug symbols             yes
strip symbols             yes
optimize for size         no
optimizations             yes
static                    yes
shared                    no
postprocessing support    yes
network support           yes
threading support         pthreads
safe bitstream reader     yes
texi2html enabled         no
perl enabled              yes
pod2man enabled           yes
makeinfo enabled          yes
makeinfo supports HTML    yes
xmllint enabled           yes

External libraries:

External libraries providing hardware acceleration:
v4l2_m2m

Libraries:
avcodec                 avformat                swresample
avdevice                avutil                  swscale
avfilter                postproc

Programs:

Enabled decoders:
mp3

Enabled encoders:
pcm_s16le

Enabled hwaccels:

Enabled parsers:
mpegaudio

Enabled demuxers:
mp3

Enabled muxers:
mp3

Enabled protocols:

Enabled filters:

Enabled bsfs:

Enabled indevs:

Enabled outdevs:

License: GPL version 2 or later

conanfile.py (ffmpeg/6.1): RUN: make -j16
GEN	libavdevice/libavdevice.version
GEN	libavfilter/libavfilter.version
GEN	libavformat/libavformat.version
GEN	libavcodec/libavcodec.version
GEN	libavutil/libavutil.version
GEN	libpostproc/libpostproc.version
GEN	libswscale/libswscale.version
GEN	libswresample/libswresample.version
CC	libavdevice/alldevices.o
CC	libavdevice/avdevice.o
CC	libavdevice/utils.o
CC	libavdevice/version.o
GEN	libavdevice/libavdevice.pc
CC	libavfilter/allfilters.o
CC	libavfilter/audio.o
CC	libavfilter/avfilter.o
CC	libavfilter/avfiltergraph.o
CC	libavfilter/buffersink.o
CC	libavfilter/buffersrc.o
CC	libavfilter/ccfifo.o
CC	libavfilter/colorspace.o
CC	libavfilter/drawutils.o
CC	libavfilter/fifo.o
CC	libavfilter/formats.o
CC	libavfilter/framepool.o
CC	libavfilter/framequeue.o
CC	libavfilter/graphdump.o
CC	libavfilter/graphparser.o
CC	libavfilter/pthread.o
CC	libavfilter/version.o
CC	libavfilter/video.o
GEN	libavfilter/libavfilter.pc
CC	libavformat/allformats.o
CC	libavformat/avio.o
CC	libavformat/avformat.o
CC	libavformat/aviobuf.o
CC	libavformat/demux.o
CC	libavformat/demux_utils.o
CC	libavformat/dump.o
CC	libavformat/dv.o
CC	libavformat/format.o
CC	libavformat/id3v2.o
CC	libavformat/id3v1.o
src/libavformat/avio.c:59:137: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
    {"rw_timeout", "Timeout for IO operations (in microseconds)", offsetof(URLContext, rw_timeout), AV_OPT_TYPE_INT64, { .i64 = 0 }, 0, INT64_MAX, AV_OPT_FLAG_ENCODING_PARAM | AV_OPT_FLAG_DECODING_PARAM },
    ~                                                                                                                                   ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:24:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
CC	libavformat/id3v2enc.o
src/libavformat/dump.c:242:55: warning: implicit conversion from 'unsigned int' to 'float' changes value from 4294967295 to 4294967296 [-Wimplicit-const-int-float-conversion]
        av_log(ctx, AV_LOG_INFO, "%f", (float) peak / UINT32_MAX);
                                                    ~ ^~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:183:27: note: expanded from macro 'UINT32_MAX'
#define UINT32_MAX       (4294967295U)
                          ^~~~~~~~~~~
src/libavformat/demux.c:1668:40: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
        if (bitrate >= 0 && bitrate <= INT64_MAX)
                                    ~~ ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:155:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
CC	libavformat/isom_tags.o
CC	libavformat/metadata.o
CC	libavformat/mp3dec.o
CC	libavformat/mp3enc.o
1 warning generated.
CC	libavformat/mux.o
CC	libavformat/mux_utils.o
CC	libavformat/network.o
CC	libavformat/options.o
1 warning generated.
CC	libavformat/os_support.o
CC	libavformat/protocols.o
In file included from src/libavformat/options.c:39:
src/libavformat/options_table.h:89:146: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
{"max_interleave_delta", "maximum buffering duration for interleaving", OFFSET(max_interleave_delta), AV_OPT_TYPE_INT64, { .i64 = 10000000 }, 0, INT64_MAX, E },
~                                                                                                                                                ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:36:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
In file included from src/libavformat/options.c:39:
src/libavformat/options_table.h:88:125: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
{"output_ts_offset", "set output timestamp offset", OFFSET(output_ts_offset), AV_OPT_TYPE_DURATION, {.i64 = 0}, -INT64_MAX, INT64_MAX, E},
~                                                                                                                           ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:35:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
In file included from src/libavformat/options.c:39:
src/libavformat/options_table.h:88:113: warning: implicit conversion from 'long' to 'double' changes value from -9223372036854775807 to -9223372036854775808 [-Wimplicit-const-int-float-conversion]
{"output_ts_offset", "set output timestamp offset", OFFSET(output_ts_offset), AV_OPT_TYPE_DURATION, {.i64 = 0}, -INT64_MAX, INT64_MAX, E},
~                                                                                                               ^~~~~~~~~~
src/libavformat/options_table.h:84:159: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775806 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
{"skip_initial_bytes", "set number of bytes to skip before reading header and frames", OFFSET(skip_initial_bytes), AV_OPT_TYPE_INT64, {.i64 = 0}, 0, INT64_MAX-1, D},
~                                                                                                                                                    ~~~~~~~~~^~
src/libavformat/options_table.h:66:156: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
{"start_time_realtime", "wall-clock time when stream begins (PTS==0)", OFFSET(start_time_realtime), AV_OPT_TYPE_INT64, {.i64 = AV_NOPTS_VALUE}, INT64_MIN, INT64_MAX, E},
~                                                                                                                                                          ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:32:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
In file included from src/libavformat/options.c:39:
src/libavformat/options_table.h:59:151: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
{"analyzeduration", "specify how many microseconds are analyzed to probe the input", OFFSET(max_analyze_duration), AV_OPT_TYPE_INT64, {.i64 = 0 }, 0, INT64_MAX, D},
~                                                                                                                                                     ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:29:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
In file included from src/libavformat/options.c:39:
src/libavformat/options_table.h:39:96: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
{"probesize", "set probing size", OFFSET(probesize), AV_OPT_TYPE_INT64, {.i64 = 5000000 }, 32, INT64_MAX, D},
~                                                                                              ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:28:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
CC	libavformat/rawenc.o
CC	libavformat/replaygain.o
CC	libavformat/riff.o
CC	libavformat/sdp.o
CC	libavformat/seek.o
src/libavformat/rawenc.c:37:12: warning: unused function 'force_one_stream' [-Wunused-function]
static int force_one_stream(AVFormatContext *s)
           ^
CC	libavformat/url.o
1 warning generated.
CC	libavformat/utils.o
7 warnings generated.
CC	libavformat/version.o
GEN	libavformat/libavformat.pc
CC	libavcodec/to_upper4.o
GEN	libavcodec/libavcodec.pc
CC	libpostproc/postprocess.o
CC	libpostproc/version.o
GEN	libpostproc/libpostproc.pc
GEN	libswresample/libswresample.pc
GEN	libswscale/libswscale.pc
GEN	libavutil/libavutil.pc
CC	libavcodec/aarch64/idctdsp_init_aarch64.o
AR	libavdevice/libavdevice.a
AS	libavcodec/aarch64/idctdsp_neon.o
CC	libavcodec/aarch64/mpegaudiodsp_init.o
AS	libavcodec/aarch64/mpegaudiodsp_neon.o
AS	libavcodec/aarch64/simple_idct_neon.o
CC	libavcodec/ac3_parser.o
CC	libavcodec/allcodecs.o
CC	libavcodec/adts_parser.o
CC	libavcodec/avcodec.o
CC	libavcodec/avdct.o
CC	libavcodec/avpacket.o
CC	libavcodec/avfft.o
CC	libavcodec/bitstream.o
CC	libavcodec/bitstream_filters.o
CC	libavcodec/bsf.o
CC	libavcodec/codec_desc.o
CC	libavcodec/codec_par.o
CC	libavcodec/d3d11va.o
CC	libavcodec/dct32_fixed.o
CC	libavcodec/dct32_float.o
CC	libavcodec/decode.o
CC	libavcodec/dirac.o
CC	libavcodec/dv_profile.o
CC	libavcodec/encode.o
CC	libavcodec/faandct.o
CC	libavcodec/faanidct.o
CC	libavcodec/fdctdsp.o
CC	libavcodec/frame_thread_encoder.o
CC	libavcodec/get_buffer.o
CC	libavcodec/idctdsp.o
CC	libavcodec/imgconvert.o
CC	libavcodec/jfdctfst.o
CC	libavcodec/jfdctint.o
CC	libavcodec/jni.o
CC	libavcodec/jrevdct.o
CC	libavcodec/mathtables.o
CC	libavcodec/mediacodec.o
CC	libavcodec/mpeg12framerate.o
CC	libavcodec/mpegaudio.o
CC	libavcodec/mpegaudio_parser.o
CC	libavcodec/mpegaudiodata.o
CC	libavcodec/mpegaudiodec_common.o
CC	libavcodec/mpegaudiodec_fixed.o
CC	libavcodec/mpegaudiodecheader.o
CC	libavcodec/mpegaudiodsp_data.o
CC	libavcodec/mpegaudiodsp.o
CC	libavcodec/mpegaudiodsp_fixed.o
CC	libavcodec/mpegaudiodsp_float.o
CC	libavcodec/options.o
CC	libavcodec/mpegaudiotabs.o
CC	libavcodec/parser.o
CC	libavcodec/parsers.o
CC	libavcodec/pcm.o
CC	libavcodec/profiles.o
CC	libavcodec/pthread.o
CC	libavcodec/pthread_frame.o
CC	libavcodec/pthread_slice.o
CC	libavcodec/qsv_api.o
CC	libavcodec/raw.o
CC	libavcodec/refstruct.o
In file included from src/libavcodec/options.c:38:
src/libavcodec/options_table.h:277:116: warning: implicit conversion from 'unsigned long' to 'double' changes value from 18446744073709551615 to 18446744073709551616 [-Wimplicit-const-int-float-conversion]
{"request_channel_layout", NULL, OFFSET(request_channel_layout), AV_OPT_TYPE_CHANNEL_LAYOUT, {.i64 = DEFAULT }, 0, UINT64_MAX, A|D, "request_channel_layout"},
~                                                                                                                  ^~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:193:27: note: expanded from macro 'UINT64_MAX'
#define UINT64_MAX       (UINT64_C(18446744073709551615))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:142:27: note: expanded from macro 'UINT64_C'
#  define UINT64_C(c)     c ## UL
                          ^~~~~~~
<scratch space>:29:1: note: expanded from here
18446744073709551615UL
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/libavcodec/options.c:38:
src/libavcodec/options_table.h:276:100: warning: implicit conversion from 'unsigned long' to 'double' changes value from 18446744073709551615 to 18446744073709551616 [-Wimplicit-const-int-float-conversion]
{"channel_layout", NULL, OFFSET(channel_layout), AV_OPT_TYPE_CHANNEL_LAYOUT, {.i64 = DEFAULT }, 0, UINT64_MAX, A|E|D, "channel_layout"},
~                                                                                                  ^~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:193:27: note: expanded from macro 'UINT64_MAX'
#define UINT64_MAX       (UINT64_C(18446744073709551615))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:142:27: note: expanded from macro 'UINT64_C'
#  define UINT64_C(c)     c ## UL
                          ^~~~~~~
<scratch space>:28:1: note: expanded from here
18446744073709551615UL
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/libavcodec/options.c:38:
src/libavcodec/options_table.h:48:110: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
{"b", "set bitrate (in bits/s)", OFFSET(bit_rate), AV_OPT_TYPE_INT64, {.i64 = AV_CODEC_DEFAULT_BITRATE }, 0, INT64_MAX, A|V|E},
~                                                                                                            ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:27:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
CC	libavcodec/simple_idct.o
src/libavcodec/pcm.c:251:20: warning: unused function 'pcm_decode_init' [-Wunused-function]
static av_cold int pcm_decode_init(AVCodecContext *avctx)
                   ^
src/libavcodec/pcm.c:323:12: warning: unused function 'pcm_decode_frame' [-Wunused-function]
static int pcm_decode_frame(AVCodecContext *avctx, AVFrame *frame,
           ^
CC	libavcodec/utils.o
CC	libavcodec/v4l2_buffers.o
3 warnings generated.
CC	libavcodec/v4l2_context.o
CC	libavcodec/v4l2_fmt.o
CC	libavcodec/v4l2_m2m.o
CC	libavcodec/version.o
CC	libavcodec/vlc.o
CC	libavcodec/vorbis_parser.o
CC	libavcodec/xiph.o
1 warning generated.
CC	libswresample/aarch64/audio_convert_init.o
AS	libswresample/aarch64/audio_convert_neon.o
2 warnings generated.
AS	libswresample/aarch64/resample.o
CC	libswresample/aarch64/resample_init.o
CC	libswresample/audioconvert.o
CC	libswresample/dither.o
CC	libswresample/options.o
CC	libswresample/rematrix.o
CC	libswresample/resample.o
CC	libswresample/resample_dsp.o
src/libswresample/options.c:132:144: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
                                                        , OFFSET(firstpts_in_samples), AV_OPT_TYPE_INT64 ,{.i64=AV_NOPTS_VALUE    }, INT64_MIN,INT64_MAX, PARAM },
                                                                                                                                               ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:33:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
src/libswresample/options.c:70:145: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
                                                          OFFSET(user_out_ch_layout), AV_OPT_TYPE_CHANNEL_LAYOUT, {.i64=0         }, INT64_MIN, INT64_MAX, PARAM|DEPREC, "channel_layout"},
                                                                                                                                                ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:30:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
src/libswresample/options.c:68:145: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
                                                          OFFSET(user_out_ch_layout), AV_OPT_TYPE_CHANNEL_LAYOUT, {.i64=0         }, INT64_MIN, INT64_MAX, PARAM|DEPREC, "channel_layout"},
                                                                                                                                                ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:28:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
src/libswresample/options.c:66:145: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
                                                          OFFSET(user_in_ch_layout), AV_OPT_TYPE_CHANNEL_LAYOUT, {.i64=0          }, INT64_MIN, INT64_MAX, PARAM|DEPREC, "channel_layout"},
                                                                                                                                                ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:26:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
src/libswresample/options.c:64:145: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
                                                          OFFSET(user_in_ch_layout), AV_OPT_TYPE_CHANNEL_LAYOUT, {.i64=0          }, INT64_MIN, INT64_MAX, PARAM|DEPREC, "channel_layout"},
                                                                                                                                                ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:24:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
CC	libswresample/swresample.o
CC	libswresample/swresample_frame.o
5 warnings generated.
CC	libswresample/version.o
AS	libswscale/aarch64/hscale.o
AS	libswscale/aarch64/output.o
CC	libswscale/aarch64/rgb2rgb.o
AS	libswscale/aarch64/rgb2rgb_neon.o
CC	libswscale/aarch64/swscale.o
CC	libswscale/aarch64/swscale_unscaled.o
AS	libswscale/aarch64/yuv2rgb_neon.o
CC	libswscale/gamma.o
CC	libswscale/alphablend.o
CC	libswscale/half2float.o
CC	libswscale/hscale.o
CC	libswscale/hscale_fast_bilinear.o
CC	libswscale/input.o
CC	libswscale/options.o
CC	libswscale/output.o
CC	libswscale/rgb2rgb.o
CC	libswscale/slice.o
CC	libswscale/swscale.o
CC	libswscale/swscale_unscaled.o
CC	libswscale/utils.o
CC	libswscale/version.o
CC	libswscale/vscale.o
CC	libswscale/yuv2rgb.o
CC	libavutil/../compat/strtod.o
CC	libavutil/aarch64/cpu.o
CC	libavutil/aarch64/float_dsp_init.o
AS	libavutil/aarch64/float_dsp_neon.o
CC	libavutil/aarch64/tx_float_init.o
AS	libavutil/aarch64/tx_float_neon.o
CC	libavutil/adler32.o
CC	libavutil/aes.o
CC	libavutil/aes_ctr.o
CC	libavutil/ambient_viewing_environment.o
CC	libavutil/audio_fifo.o
CC	libavutil/avsscanf.o
CC	libavutil/avstring.o
CC	libavutil/base64.o
CC	libavutil/bprint.o
CC	libavutil/blowfish.o
CC	libavutil/buffer.o
CC	libavutil/camellia.o
CC	libavutil/cast5.o
CC	libavutil/channel_layout.o
CC	libavutil/cpu.o
CC	libavutil/crc.o
CC	libavutil/csp.o
CC	libavutil/des.o
src/libavutil/cpu.c:116:76: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
        { "flags"   , NULL, 0, AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT64_MIN, INT64_MAX, .unit = "flags" },
        ~                                                                  ^~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:188:27: note: expanded from macro 'INT64_MAX'
#define INT64_MAX        (INT64_C(9223372036854775807))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:141:27: note: expanded from macro 'INT64_C'
#  define INT64_C(c)      c ## L
                          ^~~~~~
<scratch space>:28:1: note: expanded from here
9223372036854775807L
^~~~~~~~~~~~~~~~~~~~
1 warning generated.
CC	libavutil/detection_bbox.o
CC	libavutil/dict.o
CC	libavutil/display.o
CC	libavutil/dovi_meta.o
CC	libavutil/downmix_info.o
CC	libavutil/encryption_info.o
CC	libavutil/error.o
CC	libavutil/eval.o
CC	libavutil/executor.o
CC	libavutil/fifo.o
CC	libavutil/file.o
src/libavutil/eval.c:237:41: warning: implicit conversion from 'unsigned long' to 'double' changes value from 18446744073709551615 to 18446744073709551616 [-Wimplicit-const-int-float-conversion]
            return e->value * (r * (1.0/UINT64_MAX));
                                       ~^~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:193:27: note: expanded from macro 'UINT64_MAX'
#define UINT64_MAX       (UINT64_C(18446744073709551615))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/si/.conan2/p/b/andro2b4be6153d377/p/bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/stdint.h:142:27: note: expanded from macro 'UINT64_C'
#  define UINT64_C(c)     c ## UL
                          ^~~~~~~
<scratch space>:23:1: note: expanded from here
18446744073709551615UL
^~~~~~~~~~~~~~~~~~~~~~
CC	libavutil/file_open.o
CC	libavutil/film_grain_params.o
CC	libavutil/fixed_dsp.o
CC	libavutil/float_dsp.o
CC	libavutil/frame.o
CC	libavutil/hash.o
CC	libavutil/hdr_dynamic_metadata.o
CC	libavutil/hdr_dynamic_vivid_metadata.o
CC	libavutil/hmac.o
CC	libavutil/hwcontext_stub.o
CC	libavutil/hwcontext.o
CC	libavutil/imgutils.o
CC	libavutil/integer.o
CC	libavutil/intmath.o
CC	libavutil/lfg.o
CC	libavutil/lls.o
1 warning generated.
CC	libavutil/log.o
CC	libavutil/log2_tab.o
CC	libavutil/mastering_display_metadata.o
CC	libavutil/lzo.o
CC	libavutil/mathematics.o
CC	libavutil/md5.o
CC	libavutil/mem.o
CC	libavutil/murmur3.o
CC	libavutil/opt.o
CC	libavutil/parseutils.o
CC	libavutil/pixdesc.o
CC	libavutil/pixelutils.o
CC	libavutil/rational.o
CC	libavutil/random_seed.o
CC	libavutil/rc4.o
CC	libavutil/reverse.o
CC	libavutil/ripemd.o
CC	libavutil/samplefmt.o
CC	libavutil/sha.o
CC	libavutil/sha512.o
CC	libavutil/slicethread.o
CC	libavutil/spherical.o
CC	libavutil/stereo3d.o
CC	libavutil/tea.o
CC	libavutil/threadmessage.o
CC	libavutil/time.o
CC	libavutil/timecode.o
CC	libavutil/tree.o
CC	libavutil/twofish.o
CC	libavutil/tx.o
CC	libavutil/tx_float.o
CC	libavutil/tx_double.o
CC	libavutil/tx_int32.o
CC	libavutil/utils.o
CC	libavutil/uuid.o
CC	libavutil/version.o
CC	libavutil/video_enc_params.o
CC	libavutil/video_hint.o
CC	libavutil/xga_font_data.o
CC	libavutil/xtea.o
AR	libavfilter/libavfilter.a
AR	libavcodec/libavcodec.a
AR	libavformat/libavformat.a
AR	libpostproc/libpostproc.a
AR	libswresample/libswresample.a
AR	libavutil/libavutil.a
AR	libswscale/libswscale.a

@uilianries
Copy link
Member

documentation at that link because the recipe uses as directly and the documentation for

I misread it as AR, sorry! 🤦

@uilianries
Copy link
Member

I asked for more insight in android sdk forum, and it looks correct for general propose.

We don't have a real package consuming the android NDK Conan package, but it looks fine.

I would ask to check the build failure, but I'm not in the opposite of this PR.

@sizeak
Copy link
Contributor Author

sizeak commented Apr 9, 2024

The logs of the failing build are included in the issue linked to this PR if you wanted to look at them. The configuration used may not be 100% the same, but should be close enough. #23342

I suppose that worst case, if this change does end up causing some unexpected unforeseen issue for someone, that they can open an issue here and we can iterate on this change or revert it. Until then they could use an old version of the recipe, so while we absolutely should be as sure as possible that this is safe to merge, it's not the end of the world if there does end up being a problem.

Signed-off-by: Uilian Ries <uilianries@gmail.com>
@uilianries
Copy link
Member

I just did a change to update the test package. Now it run the ndk-build during the test, when not cross-building, or when arch compatible. It should fix the current CI error involving OSX.

@conan-center-bot

This comment has been minimized.

This comment was marked as resolved.

Signed-off-by: Uilian Ries <uilianries@gmail.com>
@sizeak
Copy link
Contributor Author

sizeak commented Apr 9, 2024

I just did a change to update the test package. Now it run the ndk-build during the test, when not cross-building, or when arch compatible. It should fix the current CI error involving OSX.

Excellent, thank you 👍🏻

@conan-center-bot

This comment has been minimized.

Copy link
Contributor

github-actions bot commented Apr 9, 2024

Hooks produced the following warnings for commit fbbe495
android-ndk/r23b@#9fabefce0c54ef2e3349e09173d26795
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libRemarks.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang-cpp.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libLTO.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libLLVM.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang_cxx.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/python3/lib/libpython3.9.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang-cpp.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'Foundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'Foundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'Security' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'Security' but it is not in cpp_info.frameworks.

Signed-off-by: Uilian Ries <uilianries@gmail.com>
@conan-center-bot

This comment has been minimized.

Copy link
Contributor

github-actions bot commented Apr 9, 2024

Hooks produced the following warnings for commit e517a89
android-ndk/r23b@#9fabefce0c54ef2e3349e09173d26795
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'Security' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'Security' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang-cpp.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libRemarks.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang-cpp.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libLTO.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libLLVM.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/libclang_cxx.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/python3/lib/libpython3.9.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.12.0.8git.dylib' links to system library 'Foundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib64/liblldb.dylib' links to system library 'Foundation' but it is not in cpp_info.frameworks.

Signed-off-by: Uilian Ries <uilianries@gmail.com>
@conan-center-bot

This comment has been minimized.

@conan-center-bot

This comment has been minimized.

@sizeak
Copy link
Contributor Author

sizeak commented Apr 29, 2024

Hi @uilianries @RubenRBS, this seems to have passed the CI checks now, what is the appetite for merging it?

@sizeak
Copy link
Contributor Author

sizeak commented May 28, 2024

@jcar87 @RubenRBS Any progress on this?

jcar87
jcar87 previously requested changes Jun 11, 2024
Copy link
Contributor

@jcar87 jcar87 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @sizeak - these changes look good.

Please see https://github.com/conan-io/conan-center-index/pull/23346/files#r1634932319 to address the issue with the test package - otherwise it just skips testing even in scenarios where it is expected to work.

Comment on lines 26 to 32
# INFO: can_run allows mac M1, but it does not work for the NDK
# https://github.com/android/ndk/issues/1299
if can_run(self) and not (self.settings.os == "Macos" and self.settings.arch == "armv8"):
if self.settings.os == "Windows":
self.run("ndk-build.cmd --version")
else:
self.run("ndk-build --version")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# INFO: can_run allows mac M1, but it does not work for the NDK
# https://github.com/android/ndk/issues/1299
if can_run(self) and not (self.settings.os == "Macos" and self.settings.arch == "armv8"):
if self.settings.os == "Windows":
self.run("ndk-build.cmd --version")
else:
self.run("ndk-build --version")
ndk_build = "ndk-build.cmd" if self.settings.os == "Windows" else "ndk-build"
ndk_version = Version(self.tested_reference_str.split('/')[1])
skip_run = platform.system() == "Darwin" and "arm" in platform.processor() and ndk_version < "r23c"
if not skip_run:
self.run(f"{ndk_build} --version", env="conanbuild")
else:
self.output.warning(f"Skipped running ndk-build on macOS Apple Silicon in arm64 mode, please use a newer"
" version of the Android NDK")

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sizeak I just tested @jcar87 suggestion locally and it works good, please, include it to your PR (I have no permission, needed to mark the checkbox to allow maintainers change the PR). Plus, you will need to add the follow lines in your imports:

from conan.tools.scm import Version
import platform

About the test_v1_package, I would ask deleting the entire folder and its content. We actually don't use any CMake target generated by cmake_find_package (legacy), we just build a simple cpp using the Android SDK.

Copy link
Member

@uilianries uilianries Jun 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or, you can just merge the PR glean-notes#1 😄

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

Signed-off-by: Uilian Ries <uilianries@gmail.com>
Signed-off-by: Uilian Ries <uilianries@gmail.com>
@conan-center-bot

This comment has been minimized.

@uilianries
Copy link
Member

@sizeak Thank you! The CI service is under maintenance now (we use Wednesdays to do scheduled changes), but should be back in few hours. The CI is prepared to restart your PR automatically after the maintenance. In case you note is delaying too much, please, don't avoid pinging us.

@sizeak
Copy link
Contributor Author

sizeak commented Jun 19, 2024

No problem, I'm not being blocked by this atm. Thanks for the help!

FYI there is a linter warning on the PR

Using an f-string that does not have any interpolated variables

Do we care about fixing that?

@uilianries
Copy link
Member

Do we care about fixing that?

@sizeak As the CI is stopped, you can remove the f from that string without triggering another build 😄 That warning is not a blocker neither would break anything, just to know.

@conan-center-bot

This comment has been minimized.

@jcar87 jcar87 dismissed their stale review June 19, 2024 15:10

PR updated

@conan-center-bot
Copy link
Collaborator

Conan v1 pipeline ✔️

All green in build 19 (a971a4b63166deb1e123888ce9a63f759c951b32):

  • android-ndk/r26b:
    All packages built successfully! (All logs)

  • android-ndk/r25c:
    All packages built successfully! (All logs)

  • android-ndk/r26d:
    All packages built successfully! (All logs)

  • android-ndk/r23:
    All packages built successfully! (All logs)

  • android-ndk/r26c:
    All packages built successfully! (All logs)

  • android-ndk/r23b:
    All packages built successfully! (All logs)

  • android-ndk/r25b:
    All packages built successfully! (All logs)

  • android-ndk/r26:
    All packages built successfully! (All logs)

  • android-ndk/r22:
    All packages built successfully! (All logs)

  • android-ndk/r21e:
    All packages built successfully! (All logs)

  • android-ndk/r23c:
    All packages built successfully! (All logs)

  • android-ndk/r22b:
    All packages built successfully! (All logs)

  • android-ndk/r24:
    All packages built successfully! (All logs)

  • android-ndk/r25:
    All packages built successfully! (All logs)

  • android-ndk/r19c:
    All packages built successfully! (All logs)

  • android-ndk/r21d:
    All packages built successfully! (All logs)

  • android-ndk/r20b:
    All packages built successfully! (All logs)


Conan v2 pipeline ✔️

Note: Conan v2 builds are now mandatory. Please read our discussion about it.

All green in build 18 (a971a4b63166deb1e123888ce9a63f759c951b32):

  • android-ndk/r26b:
    All packages built successfully! (All logs)

  • android-ndk/r24:
    All packages built successfully! (All logs)

  • android-ndk/r26:
    All packages built successfully! (All logs)

  • android-ndk/r21e:
    All packages built successfully! (All logs)

  • android-ndk/r26c:
    All packages built successfully! (All logs)

  • android-ndk/r25:
    All packages built successfully! (All logs)

  • android-ndk/r26d:
    All packages built successfully! (All logs)

  • android-ndk/r22b:
    All packages built successfully! (All logs)

  • android-ndk/r19c:
    All packages built successfully! (All logs)

  • android-ndk/r23:
    All packages built successfully! (All logs)

  • android-ndk/r25b:
    All packages built successfully! (All logs)

  • android-ndk/r20b:
    All packages built successfully! (All logs)

  • android-ndk/r25c:
    All packages built successfully! (All logs)

  • android-ndk/r23b:
    All packages built successfully! (All logs)

  • android-ndk/r23c:
    All packages built successfully! (All logs)

  • android-ndk/r22:
    All packages built successfully! (All logs)

  • android-ndk/r21d:
    All packages built successfully! (All logs)

Copy link
Contributor

Hooks produced the following warnings for commit a971a4b
android-ndk/r26d@#0a8a020a2e0ce2edbda6ff226a33a23a
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/34/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/23/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/27/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/31/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/26/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/29/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/28/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/22/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/30/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/21/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/33/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/32/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/25/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/34/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/23/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/27/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/31/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/26/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/29/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/28/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/24/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/22/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/30/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/21/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/33/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/32/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/25/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/34/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/23/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/27/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/31/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/26/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/29/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/28/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/24/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/22/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/30/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/21/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/33/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/32/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/25/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/34/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/23/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/27/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/31/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/26/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/29/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/28/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/24/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/22/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/30/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/21/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/33/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/32/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Running objdump on './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/25/libc++.so' failed. Is the environment variable OBJDUMP correctly configured?
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_crypt.cpython-310-x86_64-linux-gnu.so' links to system library 'crypt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/nis.cpython-310-x86_64-linux-gnu.so' links to system library 'nsl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/simpleperf/bin/linux/x86_64/libsimpleperf_report.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/libpython3.10.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/libpython3.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_decimal.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/cmath.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_datetime.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_bisect.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_codecs_tw.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/mmap.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/xxlimited.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_codecs_cn.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_ctypes_test.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_testimportmultiple.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/audioop.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_posixshmem.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_codecs_hk.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/fcntl.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_multibytecodec.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/pyexpat.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_heapq.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/select.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/zlib.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_md5.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/nis.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_xxsubinterpreters.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_statistics.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_elementtree.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_testmultiphase.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/spwd.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/termios.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/array.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_curses.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_sha3.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_curses_panel.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_contextvars.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_testbuffer.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_struct.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_codecs_jp.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_ctypes.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/binascii.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_testinternalcapi.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/math.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_zoneinfo.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/grp.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_crypt.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/resource.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_blake2.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_pickle.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/unicodedata.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_random.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/xxlimited_35.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_csv.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_multiprocessing.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_asyncio.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/ossaudiodev.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_sha1.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_sha512.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/syslog.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_sha256.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_codecs_iso2022.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_codecs_kr.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_posixsubprocess.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_xxtestfuzz.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_socket.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_testcapi.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_lsprof.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libLLVM-17.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/liblldb.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/liblldbIntelFeatures.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libc++.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libxml2.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libLTO.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libRemarks.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libclang.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libclang-cpp.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/python3.10/site-packages/lldb/_lldb.cpython-310-x86_64-linux-gnu.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/x86_64-unknown-linux-gnu/libc++.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/i386-unknown-linux-gnu/libc++.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.asan.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.hwasan_aliases.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.hwasan.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.tsan.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.memprof.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.scudo_standalone.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.ubsan_standalone.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.dyndd.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/i386-unknown-linux-gnu/libclang_rt.asan.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/i386-unknown-linux-gnu/libclang_rt.scudo_standalone.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/i386-unknown-linux-gnu/libclang_rt.ubsan_standalone.so' links to system library 'pthread' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/simpleperf/bin/linux/x86_64/libsimpleperf_report.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/libpython3.10.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_decimal.cpython-310-x86_64-linux-gnu.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/cmath.cpython-310-x86_64-linux-gnu.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_datetime.cpython-310-x86_64-linux-gnu.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_ctypes_test.cpython-310-x86_64-linux-gnu.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/audioop.cpython-310-x86_64-linux-gnu.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/math.cpython-310-x86_64-linux-gnu.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libLLVM-17.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/liblldb.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/LLVMPolly.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/liblldbIntelFeatures.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libc++.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libxml2.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libLTO.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libRemarks.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libclang.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libclang-cpp.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/python3.10/site-packages/lldb/_lldb.cpython-310-x86_64-linux-gnu.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/x86_64-unknown-linux-gnu/libc++.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/i386-unknown-linux-gnu/libc++.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.asan-arm-android.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.hwasan-aarch64-android.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.tsan-aarch64-android.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.tsan-x86_64-android.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.hwasan-x86_64-android.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.asan-aarch64-android.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.hwasan_aliases-x86_64-android.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.asan-x86_64-android.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.asan-i686-android.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.asan.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.hwasan_aliases.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.hwasan.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.tsan.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.memprof.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.scudo_standalone.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/i386-unknown-linux-gnu/libclang_rt.asan.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/i386-unknown-linux-gnu/libclang_rt.scudo_standalone.so' links to system library 'm' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/simpleperf/bin/linux/x86_64/libsimpleperf_report.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/libpython3.10.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_ctypes.cpython-310-x86_64-linux-gnu.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libLLVM-17.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/liblldb.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/liblldbIntelFeatures.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libxml2.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libLTO.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libRemarks.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libclang.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libclang-cpp.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/python3.10/site-packages/lldb/_lldb.cpython-310-x86_64-linux-gnu.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.ubsan_standalone-x86_64-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.asan-arm-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.hwasan-aarch64-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.tsan-aarch64-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.tsan-x86_64-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.hwasan-x86_64-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.asan-aarch64-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.ubsan_standalone-aarch64-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.ubsan_standalone-arm-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.ubsan_standalone-i686-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.hwasan_aliases-x86_64-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.asan-x86_64-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/libclang_rt.asan-i686-android.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/x86_64/libomp.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/arm/libomp.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/i386/libomp.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/linux/aarch64/libomp.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.asan.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.hwasan_aliases.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.hwasan.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.tsan.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.memprof.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.ubsan_standalone.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.dyndd.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/i386-unknown-linux-gnu/libclang_rt.asan.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/i386-unknown-linux-gnu/libclang_rt.ubsan_standalone.so' links to system library 'dl' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/libpython3.10.so' links to system library 'util' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/simpleperf/bin/linux/x86_64/libsimpleperf_report.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/python3/lib/python3.10/lib-dynload/_posixshmem.cpython-310-x86_64-linux-gnu.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libLLVM-17.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/liblldb.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/liblldbIntelFeatures.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libc++.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libLTO.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libRemarks.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libclang.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/libclang-cpp.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/python3.10/site-packages/lldb/_lldb.cpython-310-x86_64-linux-gnu.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/x86_64-unknown-linux-gnu/libc++.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/i386-unknown-linux-gnu/libc++.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.asan.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.hwasan_aliases.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.hwasan.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.memprof.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.ubsan_standalone.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/x86_64-unknown-linux-gnu/libclang_rt.dyndd.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/i386-unknown-linux-gnu/libclang_rt.asan.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/linux-x86_64/lib/clang/17/lib/i386-unknown-linux-gnu/libclang_rt.ubsan_standalone.so' links to system library 'rt' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib/liblldb.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib/libclang-cpp.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib/liblldb.17.0.2.dylib' links to system library 'CoreServices' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/python3/lib/libpython3.10.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib/liblldb.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib/libclang-cpp.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib/liblldb.17.0.2.dylib' links to system library 'CoreFoundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib/liblldb.dylib' links to system library 'Security' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib/liblldb.17.0.2.dylib' links to system library 'Security' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib/liblldb.dylib' links to system library 'Foundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library './bin/toolchains/llvm/prebuilt/darwin-x86_64/lib/liblldb.17.0.2.dylib' links to system library 'Foundation' but it is not in cpp_info.frameworks.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\toolchains\llvm\prebuilt\windows-x86_64\bin\liblldb.dll' links to system library 'version' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\toolchains\llvm\prebuilt\windows-x86_64\python3\python310.dll' links to system library 'version' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\toolchains\llvm\prebuilt\windows-x86_64\bin\liblldb.dll' links to system library 'psapi' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\toolchains\llvm\prebuilt\windows-x86_64\bin\liblldb.dll' links to system library 'rpcrt4' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\toolchains\llvm\prebuilt\windows-x86_64\bin\liblldb.dll' links to system library 'ws2_32' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\toolchains\llvm\prebuilt\windows-x86_64\bin\libxml2.dll' links to system library 'ws2_32' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\toolchains\llvm\prebuilt\windows-x86_64\python3\python310.dll' links to system library 'ws2_32' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\toolchains\llvm\prebuilt\windows-x86_64\bin\liblldb.dll' links to system library 'dbghelp' but it is not in cpp_info.system_libs.

@jcar87 jcar87 assigned jcar87 and unassigned AbrilRBS Jun 19, 2024
@conan-center-bot conan-center-bot merged commit 7893fb1 into conan-io:master Jun 19, 2024
76 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[package] android-ndk/*: ffmpeg/* hangs during configure when building for Android.
6 participants