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

[package] xkbcommon/1.5.0: Doesn't find wayland-client #26130

Closed
Drllap opened this issue Dec 6, 2024 · 8 comments
Closed

[package] xkbcommon/1.5.0: Doesn't find wayland-client #26130

Drllap opened this issue Dec 6, 2024 · 8 comments
Labels
bug Something isn't working

Comments

@Drllap
Copy link
Contributor

Drllap commented Dec 6, 2024

Description

Compilation of xkbcommon fails because it doesn't find wayland-client

Package and Environment Details

  • Package Name/Version: xkbcommon/1.5.0
  • Operating System+version: Running inside docker image based on gcc:13.2. I think it is a Debian
  • Compiler+version: GCC 13.2
  • Docker image: gcc:13.2
  • Conan version: 1.64.1
  • Python version: 3.11.2

Conan profile

conan profile show x86_64_linux_c++11
Configuration for profile x86_64_linux_c++11:

[settings]
arch=x86_64
build_type=Release
compiler=gcc
compiler.libcxx=libstdc++11
compiler.version=13.2
os=Linux
[options]
[conf]
tools.build:compiler_executables={'c': '/usr/local/bin/gcc', 'cpp': '/usr/local/bin/g++'}
[build_requires]
[env]
CC=/usr/local/bin/gcc
CMAKE_TOOLCHAIN_FILE=/cmake/toolchains/x86_64-linux-gnu-gcc.cmake
CXX=/usr/local/bin/g++

Steps to reproduce

Run:

conan install                                   \
  -pr=x86_64_linux_c++11 /temp/conanfile.py     \
  --build=outdated                              \
  -c tools.system.package_manager:mode=install \
  -c:b tools.system.package_manager:mode=install

Relevant parts of the conan file:

from conan import ConanFile
from conan.tools.cmake import CMake, CMakeToolchain, cmake_layout, CMakeDeps
from conan.tools.files import copy
import os

class MyConanFIle(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    options = {
        "build_tests": [ True, False ],
    }
    default_options = {
        "build_tests" : True,
        "opencv/*:with_jpeg" : False,
        "opencv/*:with_png" : False,
        "opencv/*:with_tiff" : False,
        "opencv/*:with_jasper" : False,
        "opencv/*:with_openexr" : False,
        "opencv/*:with_webp" : False,
        "wlm/*:boost_logging" : False,
        "ffmpeg/*:shared" : True,
        "ffmpeg/*:with_libfdk_aac": False, 
        "ffmpeg/*:with_libx264":    False, 
        "ffmpeg/*:with_libx265":    False,
        "ffmpeg/*:postproc":        False,
        "ffmpeg/*:with_ssl":        False,
        "ffmpeg/*:with_libvpx":     False,
        "qt/*:shared" : True,
        "qt/*:qtsvg" : True,
        "qt/*:qtwebsockets" : True,
        "qt/*:qtserialport" : True,
        "qt/*:with_sqlite3" : False,
        "qt/*:with_mysql" : False,
        "qt/*:with_odbc" : False,
        "qwt/*:shared": True,
    }

    def requirements(self):
        self.requires("boost/1.76.0")
        self.requires("opencv/3.4.20")
        self.requires("ffmpeg/6.0.1")
        self.requires("qt/5.15.14")
        self.requires("qwt/6.2.0")
        self.requires("ms-gsl/4.0.0")


        if self.options.build_tests:
            self.requires("gtest/1.13.0")
        if self.settings.os == "Linux":
            self.options["opencv"].with_gtk = False

Logs

Click to expand log
nvert_context_copy.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_convert_context_create.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_convert_context_free.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_converted_pattern_free.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_dfa_match.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_general_context_copy.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_general_context_create.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_general_context_free.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_get_error_message.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_get_mark.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_get_match_data_size.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_get_ovector_count.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_get_ovector_pointer.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_get_startchar.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_jit_compile.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_jit_free_unused_memory.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_jit_match.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_jit_stack_assign.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_jit_stack_create.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_jit_stack_free.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_maketables.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_maketables_free.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_match.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_match_context_copy.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_match_context_create.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_match_context_free.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_match_data_create.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_match_data_create_from_pattern.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_match_data_free.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_pattern_convert.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_pattern_info.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_serialize_decode.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_serialize_encode.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_serialize_free.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_serialize_get_number_of_codes.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_bsr.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_callout.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_character_tables.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_compile_extra_options.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_compile_recursion_guard.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_depth_limit.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_glob_escape.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_glob_separator.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_heap_limit.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_match_limit.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_max_pattern_length.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_newline.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_offset_limit.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_parens_nest_limit.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_recursion_limit.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_recursion_memory_management.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_set_substitute_callout.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substitute.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substring_copy_byname.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substring_copy_bynumber.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substring_free.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substring_get_byname.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substring_get_bynumber.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substring_length_byname.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substring_length_bynumber.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substring_list_free.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substring_list_get.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substring_nametable_scan.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2_substring_number_from_name.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2api.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2build.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2callout.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2compat.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2convert.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2demo.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2grep.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2jit.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2limits.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2matching.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2partial.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2pattern.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2perform.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2posix.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2sample.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2serialize.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2syntax.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2test.html
-- Installing: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/share/doc/pcre2/html/pcre2unicode.html
pcre2/10.42 package(): Packaged 3 files: pcre2grep, pcre2-config, LICENCE
pcre2/10.42 package(): Packaged 2 '.h' files: pcre2.h, pcre2posix.h
pcre2/10.42 package(): Packaged 4 '.a' files: libpcre2-32.a, libpcre2-posix.a, libpcre2-16.a, libpcre2-8.a
pcre2/10.42: Package '7e7bc84bb0f98144b4bbcf9b2110c74671077ae0' created
pcre2/10.42: Created package revision f15f329955cb11fa8d19e7aa8137967b
pcre2/10.42: Appending PATH environment variable: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/bin
pcre2/10.42: Appending PATH environment variable: /root/.conan/data/pcre2/10.42/_/_/package/7e7bc84bb0f98144b4bbcf9b2110c74671077ae0/bin
Downloading conan_sources.tgz completed [0.37k]
Decompressing conan_sources.tgz completed [0.00k]
vorbis/1.3.7: Configuring sources in /root/.conan/data/vorbis/1.3.7/_/_/source/src
Downloading v1.3.7.tar.gz completed [1205.64k]                                           vorbis/1.3.7:
vorbis/1.3.7:
vorbis/1.3.7: Copying sources to build folder
vorbis/1.3.7: Building your package in /root/.conan/data/vorbis/1.3.7/_/_/build/0e02901a8dbc3e4f5df5f171cfbdd779b249c968
vorbis/1.3.7: Generator txt created conanbuildinfo.txt
vorbis/1.3.7: Calling generate()
vorbis/1.3.7: Preset 'release' added to CMakePresets.json. Invoke it manually using 'cmake --preset release'
vorbis/1.3.7: If your CMake version is not compatible with CMakePresets (<3.19) call cmake like: 'cmake <path> -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=/root/.conan/data/vorbis/1.3.7/_/_/build/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/build/Release/generators/conan_toolchain.cmake -DCMAKE_POLICY_DEFAULT_CMP0042=NEW -DCMAKE_POLICY_DEFAULT_CMP0091=NEW -DCMAKE_BUILD_TYPE=Release'
vorbis/1.3.7: Aggregating env generators
vorbis/1.3.7: Calling build()
vorbis/1.3.7: Apply patch (portability): MinGW: fix .def file for shared lib
vorbis/1.3.7: CMake command: cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="/root/.conan/data/vorbis/1.3.7/_/_/build/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/build/Release/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968" -DCMAKE_POLICY_DEFAULT_CMP0042="NEW" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="Release" "/root/.conan/data/vorbis/1.3.7/_/_/build/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/src"
CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.


-- Using Conan toolchain: /root/.conan/data/vorbis/1.3.7/_/_/build/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/build/Release/generators/conan_toolchain.cmake
-- Conan toolchain: Setting CMAKE_POSITION_INDEPENDENT_CODE=ON (options.fPIC)
-- Conan toolchain: Setting BUILD_SHARED_LIBS = OFF
-- The C compiler identification is GNU 13.2.0
-- The CXX compiler identification is GNU 13.2.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/local/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/local/bin/g++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring vorbis 1.3.7
-- Looking for floor in m
-- Looking for floor in m - found
-- Conan: Component target declared 'Ogg::ogg'
-- Configuring done (0.4s)
-- Generating done (0.0s)
-- Build files have been written to: /root/.conan/data/vorbis/1.3.7/_/_/build/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/build/Release
vorbis/1.3.7: CMake command: cmake --build "/root/.conan/data/vorbis/1.3.7/_/_/build/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/build/Release" '--' '-j8'
[  4%] Building C object lib/CMakeFiles/vorbis.dir/mdct.c.o
[  8%] Building C object lib/CMakeFiles/vorbis.dir/smallft.c.o
[ 12%] Building C object lib/CMakeFiles/vorbis.dir/block.c.o
[ 16%] Building C object lib/CMakeFiles/vorbis.dir/envelope.c.o
[ 20%] Building C object lib/CMakeFiles/vorbis.dir/lsp.c.o
[ 24%] Building C object lib/CMakeFiles/vorbis.dir/lpc.c.o
[ 28%] Building C object lib/CMakeFiles/vorbis.dir/window.c.o
[ 32%] Building C object lib/CMakeFiles/vorbis.dir/analysis.c.o
[ 36%] Building C object lib/CMakeFiles/vorbis.dir/synthesis.c.o
[ 40%] Building C object lib/CMakeFiles/vorbis.dir/psy.c.o
[ 44%] Building C object lib/CMakeFiles/vorbis.dir/info.c.o
[ 48%] Building C object lib/CMakeFiles/vorbis.dir/floor1.c.o
[ 52%] Building C object lib/CMakeFiles/vorbis.dir/floor0.c.o
[ 56%] Building C object lib/CMakeFiles/vorbis.dir/res0.c.o
[ 60%] Building C object lib/CMakeFiles/vorbis.dir/mapping0.c.o
[ 64%] Building C object lib/CMakeFiles/vorbis.dir/registry.c.o
[ 68%] Building C object lib/CMakeFiles/vorbis.dir/codebook.c.o
[ 72%] Building C object lib/CMakeFiles/vorbis.dir/sharedbook.c.o
[ 76%] Building C object lib/CMakeFiles/vorbis.dir/lookup.c.o
[ 80%] Building C object lib/CMakeFiles/vorbis.dir/bitrate.c.o
[ 84%] Linking C static library libvorbis.a
[ 84%] Built target vorbis
[ 92%] Building C object lib/CMakeFiles/vorbisfile.dir/vorbisfile.c.o
[ 92%] Building C object lib/CMakeFiles/vorbisenc.dir/vorbisenc.c.o
[ 96%] Linking C static library libvorbisfile.a
[ 96%] Built target vorbisfile
[100%] Linking C static library libvorbisenc.a
[100%] Built target vorbisenc
vorbis/1.3.7: Package '0e02901a8dbc3e4f5df5f171cfbdd779b249c968' built
vorbis/1.3.7: Build folder /root/.conan/data/vorbis/1.3.7/_/_/build/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/build/Release
vorbis/1.3.7: Generated conaninfo.txt
vorbis/1.3.7: Generated conanbuildinfo.txt
vorbis/1.3.7: Generating the package
vorbis/1.3.7: Package folder /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968
vorbis/1.3.7: Calling package()
vorbis/1.3.7: Copied 1 file: COPYING
vorbis/1.3.7: CMake command: cmake --install "/root/.conan/data/vorbis/1.3.7/_/_/build/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/build/Release" --prefix "/root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968"
-- Install configuration: "Release"
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/lib/pkgconfig/vorbis.pc
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/lib/pkgconfig/vorbisenc.pc
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/lib/pkgconfig/vorbisfile.pc
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/include/vorbis/codec.h
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/include/vorbis/vorbisenc.h
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/include/vorbis/vorbisfile.h
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/lib/libvorbis.a
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/lib/libvorbisenc.a
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/lib/libvorbisfile.a
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/lib/cmake/Vorbis/VorbisTargets.cmake
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/lib/cmake/Vorbis/VorbisTargets-release.cmake
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/lib/cmake/Vorbis/VorbisConfig.cmake
-- Installing: /root/.conan/data/vorbis/1.3.7/_/_/package/0e02901a8dbc3e4f5df5f171cfbdd779b249c968/lib/cmake/Vorbis/VorbisConfigVersion.cmake
vorbis/1.3.7 package(): Packaged 1 file: COPYING
vorbis/1.3.7 package(): Packaged 3 '.h' files: vorbisfile.h, codec.h, vorbisenc.h
vorbis/1.3.7 package(): Packaged 3 '.a' files: libvorbisenc.a, libvorbisfile.a, libvorbis.a
vorbis/1.3.7: Package '0e02901a8dbc3e4f5df5f171cfbdd779b249c968' created
vorbis/1.3.7: Created package revision afbf88be02bdc7cd2d1f13c7e369d4a9
bison/3.8.2: Applying build-requirement: flex/2.6.4
Downloading conan_sources.tgz completed [1.75k]
Decompressing conan_sources.tgz completed [0.00k]
bison/3.8.2: Configuring sources in /root/.conan/data/bison/3.8.2/_/_/source/src
Downloading bison-3.8.2.tar.gz completed [5511.52k]                                      bison/3.8.2: /3.8.2:
bison/3.8.2:
bison/3.8.2: Copying sources to build folder
bison/3.8.2: Building your package in /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233
bison/3.8.2: Generator txt created conanbuildinfo.txt
bison/3.8.2: Calling generate()
bison/3.8.2: Aggregating env generators
bison/3.8.2: Calling build()
bison/3.8.2: Apply patch (portability): use O_TEXT instead of O_BINARY for pipe
bison/3.8.2: Apply patch (portability): windows: open source file in binary mode
bison/3.8.2: Apply patch (portability): msvc: limit search range of _setmaxstdio
bison/3.8.2: Calling:
 > "/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/configure" '--prefix=/' '--bindir=${prefix}/bin' '--sbindir=${prefix}/bin' '--libdir=${prefix}/lib' '--includedir=${prefix}/include' '--oldincludedir=${prefix}/include' '--enable-relocatable' '--disable-nls' '--datarootdir=${prefix}/res'
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /usr/bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking for gcc... /usr/local/bin/gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether /usr/local/bin/gcc accepts -g... yes
checking for /usr/local/bin/gcc option to enable C11 features... none needed
checking whether /usr/local/bin/gcc understands -c and -o together... yes
checking whether the compiler is clang... no
checking for compiler option needed when checking for declarations... none
checking whether make supports the include directive... yes (GNU style)
checking dependency style of /usr/local/bin/gcc... gcc3
checking whether the compiler supports GNU C++... yes
checking whether /usr/local/bin/g++ accepts -g... yes
checking for /usr/local/bin/g++ option to enable C++11 features... none needed
checking dependency style of /usr/local/bin/g++... gcc3
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for wchar.h... yes
checking for minix/config.h... no
checking for locale.h... yes
checking for sys/param.h... yes
checking for sys/socket.h... yes
checking for stdio_ext.h... yes
checking for features.h... yes
checking for getopt.h... yes
checking for sys/cdefs.h... yes
checking for sys/time.h... yes
checking for iconv.h... yes
checking for limits.h... yes
checking for crtdefs.h... no
checking for wctype.h... yes
checking for threads.h... yes
checking for math.h... yes
checking for sys/mman.h... yes
checking for spawn.h... yes
checking for sys/ioctl.h... yes
checking for sys/resource.h... yes
checking for sys/times.h... yes
checking for sys/wait.h... yes
checking for termios.h... yes
checking for dirent.h... yes
checking for xlocale.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to run the C preprocessor... /usr/local/bin/gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for Minix Amsterdam compiler... no
checking for ar... ar
checking for ranlib... ranlib
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for ld used by /usr/local/bin/gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking 32-bit host C ABI... no
checking for ELF binary format... yes
checking for the common suffixes of directories in the library search path... lib,lib,lib64
checking for libtextstyle... no
checking for inline... inline
checking for tcdrain... yes
checking for canonicalize_file_name... yes
checking for faccessat... yes
checking for realpath... yes
checking for lstat... yes
checking for readlinkat... yes
checking for _set_invalid_parameter_handler... no
checking for fchdir... yes
checking for fcntl... yes
checking for symlink... yes
checking for ffsl... yes
checking for vasnprintf... no
checking for snprintf... yes
checking for fsync... yes
checking for microuptime... no
checking for nanouptime... no
checking for getprogname... no
checking for getexecname... no
checking for getrusage... yes
checking for gettimeofday... yes
checking for iswcntrl... yes
checking for iswblank... yes
checking for mbsinit... yes
checking for mbrtowc... yes
checking for isascii... yes
checking for mprotect... yes
checking for obstack_printf... yes
checking for strerror_r... yes
checking for __xpg_strerror_r... yes
checking for pipe... yes
checking for pipe2... yes
checking for posix_spawn_file_actions_addchdir_np... yes
checking for posix_spawn_file_actions_addchdir... no
checking for readlink... yes
checking for setenv... yes
checking for link... yes
checking for sigaction... yes
checking for sigaltstack... yes
checking for siginterrupt... yes
checking for stpncpy... yes
checking for strndup... yes
checking for wcwidth... yes
checking for fdopendir... yes
checking for mempcpy... yes
checking for __fseterr... no
checking for fstatat... yes
checking for getdelim... yes
checking for getdtablesize... yes
checking for openat... yes
checking for catgets... yes
checking for setlocale... yes
checking whether pragma GCC diagnostic push works... yes
checking whether C++ compiler handles -Werror -Wunknown-warning-option... no
checking whether C++ compiler handles -fno-exceptions... yes
checking whether C++ compiler accepts -std=c++98... yes
checking whether C++ compiler accepts -std=c++03... yes
checking whether C++ compiler accepts -std=c++11... yes
checking whether C++ compiler accepts -std=c++14... yes
checking whether C++ compiler accepts -std=c++17... yes
checking whether C++ compiler accepts -std=c++20... yes
checking whether C++ compiler accepts -std=c++2b... yes
checking whether /usr/local/bin/gcc supports POSIXLY_CORRECT=1... yes
checking whether /usr/local/bin/g++ builds executables that work... yes
checking whether /usr/local/bin/g++ supports POSIXLY_CORRECT=1... yes
checking for dmd... no
checking for -g... no
checking for Java compiler... no
checking for Java virtual machine... no
checking for flex... /root/.conan/data/flex/2.6.4/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233/bin/flex
checking whether lex is flex... yes
checking whether flex supports --header=FILE... yes
checking lex output file root... lex.yy
checking lex library... none needed
checking whether yytext is a pointer... no
checking for bison... no
checking for byacc... no
checking for ranlib... (cached) ranlib
checking for GNU M4 that supports accurate traces... /root/.conan/data/m4/1.4.19/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/m4
checking whether /root/.conan/data/m4/1.4.19/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/m4 accepts --gnu... yes
checking how m4 supports trace files... --debugfile
checking for perl... /usr/bin/perl
checking for xsltproc... no
checking for inline... (cached) inline
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking whether malloc is ptrdiff_t safe... yes
checking whether malloc, realloc, calloc set errno on failure... yes
checking whether lstat correctly handles trailing slash... yes
checking whether // is distinct from /... no
checking whether realpath works... yes
checking for getcwd... yes
checking for C/C++ restrict keyword... __restrict__
checking if environ is properly declared... yes
checking whether the preprocessor supports include_next... yes
checking whether source code line length is unlimited... yes
checking for complete errno.h... yes
checking for /usr/local/bin/gcc options needed to detect all undeclared functions... none needed
checking whether strerror_r is declared... yes
checking whether strerror_r returns char *... yes
checking for mode_t... yes
checking for sig_atomic_t... yes
checking for working fcntl.h... yes
checking for pid_t... yes
checking for eaccess... yes
checking for stdint.h... yes
checking for inttypes.h... yes
checking whether printf supports size specifiers as in C99... yes
checking whether printf supports 'long double' arguments... yes
checking whether printf supports infinite 'double' arguments... yes
checking whether byte ordering is bigendian... no
checking whether long double and double are the same... no
checking whether printf supports infinite 'long double' arguments... yes
checking whether printf supports the 'a' and 'A' directives... yes
checking whether printf supports the 'F' directive... yes
checking whether printf supports the 'n' directive... yes
checking whether printf supports the 'ls' directive... yes
checking whether printf supports POSIX/XSI format strings with positions... yes
checking whether printf supports the grouping flag... yes
checking whether printf supports the left-adjust flag correctly... yes
checking whether printf supports the zero flag correctly... yes
checking whether printf supports large precisions... yes
checking whether the compiler produces multi-arch binaries... no
checking whether printf survives out-of-memory conditions... yes
checking for wchar_t... yes
checking for wint_t... yes
checking whether wint_t is large enough... yes
checking for intmax_t... yes
checking where to find the exponent in a 'double'... word 1 bit 20
checking whether snprintf returns a byte count as in C99... yes
checking whether snprintf truncates the result as in C99... yes
checking for snprintf... (cached) yes
checking for strnlen... yes
checking for wcslen... yes
checking for wcsnlen... yes
checking for mbrtowc... (cached) yes
checking for wcrtomb... yes
checking whether _snprintf is declared... no
checking whether frexp() can be used without linking with libm... yes
checking whether alarm is declared... yes
checking whether getcwd (NULL, 0) allocates memory for result... yes
checking for getcwd with POSIX signature... yes
checking whether getcwd is declared... yes
checking for d_ino member in directory struct... yes
checking for arithmetic hrtime_t... no
checking for getopt.h... (cached) yes
checking for getopt_long_only... yes
checking whether getopt is POSIX compatible... yes
checking for working GNU getopt function... yes
checking for working GNU getopt_long function... yes
checking for struct timeval... yes
checking for wide-enough struct timeval.tv_sec member... yes
checking for iconv... yes
checking for working iconv... yes
checking whether iconv is compatible with its POSIX signature... yes
checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... yes
checking whether stdint.h conforms to C99... yes
checking whether stdint.h works without ISO C predefines... yes
checking whether stdint.h has UINTMAX_WIDTH etc.... yes
checking whether INT32_MAX < INTMAX_MAX... yes
checking whether INT64_MAX == LONG_MAX... yes
checking whether UINT32_MAX < UINTMAX_MAX... yes
checking whether UINT64_MAX == ULONG_MAX... yes
checking where to find the exponent in a 'float'... word 0 bit 23
checking whether isnan(float) can be used without linking with libm... yes
checking whether isnan(float) works... yes
checking whether isnan(double) can be used without linking with libm... yes
checking whether isnan(long double) can be used without linking with libm... yes
checking whether isnanl works... yes
checking whether iswcntrl works... yes
checking for towlower... yes
checking for wctype_t... yes
checking for wctrans_t... yes
checking for nl_langinfo and CODESET... yes
checking for a traditional french locale... none
checking for a traditional japanese locale... none
checking for a french Unicode locale... none
checking for a transitional chinese locale... none
checking whether ldexp() can be used without linking with libm... yes
checking whether imported symbols can be declared weak... yes
checking for pthread.h... yes
checking for pthread_kill in -lpthread... yes
checking whether POSIX threads API is available... yes
checking for multithread API to use... posix
checking for a sed that does not truncate output... /usr/bin/sed
checking whether NAN macro works... yes
checking whether HUGE_VAL works... yes
checking for mbstate_t... yes
checking for mmap... yes
checking for MAP_ANONYMOUS... yes
checking whether memchr works... yes
checking whether <limits.h> defines MIN and MAX... no
checking whether <sys/param.h> defines MIN and MAX... yes
checking whether obstack_printf is declared... yes
checking for O_CLOEXEC... yes
checking for promoted mode_t type... mode_t
checking whether strerror(0) succeeds... yes
checking for strerror_r with POSIX signature... no
checking whether __xpg_strerror_r works... yes
checking for library containing posix_spawn... none required
checking for posix_spawn... yes
checking whether posix_spawn is declared... yes
checking whether posix_spawn works... yes
checking whether posix_spawn rejects scripts without shebang... yes
checking whether posix_spawnp rejects scripts without shebang... yes
checking whether posix_spawnattr_setschedpolicy is supported... yes
checking whether posix_spawnattr_setschedparam is supported... yes
checking whether C symbols are prefixed with underscore at the linker level... no
checking for sigset_t... yes
checking for shared library path variable... LD_LIBRARY_PATH
checking whether to activate relocatable installation... yes
checking for mach-o/dyld.h... no
checking for _NSGetExecutablePath... no
checking whether malloc (0) returns nonnull... yes
checking whether setenv is declared... yes
checking for sched.h... yes
checking for struct sched_param... yes
checking for uid_t in sys/types.h... yes
checking for volatile sig_atomic_t... yes
checking for sighandler_t... yes
checking whether snprintf is declared... yes
checking for posix_spawnattr_t... yes
checking for posix_spawn_file_actions_t... yes
checking whether stat file-mode macros are broken... no
checking for nlink_t... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for good max_align_t... yes
checking whether NULL can be used in arbitrary expressions... yes
checking whether fcloseall is declared... yes
checking which flavor of printf attribute matches inttypes macros... system
checking whether ecvt is declared... yes
checking whether fcvt is declared... yes
checking whether gcvt is declared... yes
checking whether stpncpy is declared... yes
checking whether strdup is declared... yes
checking whether strndup is declared... yes
checking whether <sys/ioctl.h> declares ioctl... yes
checking for struct tms... yes
checking for struct timespec in <time.h>... yes
checking for TIME_UTC in <time.h>... yes
checking whether execvpe is declared... yes
checking whether clearerr_unlocked is declared... yes
checking whether feof_unlocked is declared... yes
checking whether ferror_unlocked is declared... yes
checking whether fflush_unlocked is declared... yes
checking whether fgets_unlocked is declared... yes
checking whether fputc_unlocked is declared... yes
checking whether fputs_unlocked is declared... yes
checking whether fread_unlocked is declared... yes
checking whether fwrite_unlocked is declared... yes
checking whether getc_unlocked is declared... yes
checking whether getchar_unlocked is declared... yes
checking whether putc_unlocked is declared... yes
checking whether putchar_unlocked is declared... yes
checking whether unsetenv is declared... yes
checking whether vsnprintf is declared... yes
checking whether <wchar.h> uses 'inline' correctly... yes
checking whether wcsdup is declared... yes
checking POSIX termios... yes
checking whether use of TIOCGWINSZ requires termios.h... no
checking whether fchdir is declared... yes
checking whether getdelim is declared... yes
checking whether getdtablesize is declared... yes
checking whether getline is declared... yes
checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes
checking whether setlocale (category, NULL) is multithread-safe... yes
checking whether locale.h defines locale_t... yes
checking whether locale.h conforms to POSIX:2001... yes
checking whether struct lconv is properly defined... yes
checking whether memrchr is declared... yes
checking whether strnlen is declared... yes
checking for alloca as a compiler built-in... yes
checking whether to enable assertions... yes
checking for __builtin_expect... yes
checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes
checking for library containing clock_gettime... none required
checking for clock_gettime... yes
checking for clock_settime... yes
checking whether // is distinct from /... (cached) no
checking whether dup2 works... yes
checking for error_at_line... yes
checking whether fcntl handles F_DUPFD correctly... yes
checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check
checking whether conversion from 'int' to 'long double' works... yes
checking whether fopen recognizes a trailing slash... yes
checking whether fopen supports the mode character 'x'... yes
checking whether fopen supports the mode character 'e'... yes
checking for __fpending... yes
checking whether __fpending is declared... yes
checking whether free is known to preserve errno... yes
checking whether frexp works... yes
checking whether frexpl is declared... yes
checking whether frexpl() can be used without linking with libm... yes
checking whether frexpl works... yes
checking whether getcwd handles long file names properly... yes
checking for getpagesize... yes
checking whether getcwd succeeds when 4k < cwd_length < 16k... yes
checking whether gethrtime is declared... no
checking whether CLOCK_MONOTONIC or CLOCK_REALTIME is defined... yes
checking whether program_invocation_name is declared... yes
checking whether program_invocation_short_name is declared... yes
checking whether __argv is declared... no
checking for gettimeofday with POSIX signature... yes
checking whether the compiler generally respects inline... yes
checking whether isnan macro works... yes
checking whether isnan(double) can be used without linking with libm... (cached) yes
checking whether isnan(double) can be used without linking with libm... (cached) yes
checking whether isnan(float) can be used without linking with libm... (cached) yes
checking whether isnan(float) works... (cached) yes
checking whether isnan(long double) can be used without linking with libm... (cached) yes
checking whether isnanl works... (cached) yes
checking whether isnan(long double) can be used without linking with libm... (cached) yes
checking whether isnanl works... (cached) yes
checking whether iswblank is declared... yes
checking whether iswdigit is ISO C compliant... guessing yes
checking whether iswxdigit is ISO C compliant... guessing yes
checking whether ldexpl is declared... yes
checking whether ldexpl() can be used without linking with libm... yes
checking whether ldexpl works... yes
checking whether the compiler supports the __inline keyword... yes
checking for pthread_rwlock_t... yes
checking whether pthread_rwlock_rdlock prefers a writer to a reader... no
checking whether malloc (0) returns nonnull... (cached) yes
checking whether mbrtowc handles incomplete characters... guessing yes
checking whether mbrtowc works as well as mbtowc... guessing yes
checking whether mbrtowc handles a NULL pwc argument... guessing yes
checking whether mbrtowc handles a NULL string argument... guessing yes
checking whether mbrtowc has a correct return value... guessing yes
checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes
checking whether mbrtowc stores incomplete characters... guessing no
checking whether mbrtowc works on empty input... yes
checking whether the C locale is free of encoding errors... no
checking whether mbrtowc handles incomplete characters... (cached) guessing yes
checking whether mbrtowc works as well as mbtowc... (cached) guessing yes
checking whether mbswidth is declared in <wchar.h>... no
checking for mbstate_t... (cached) yes
checking for mempcpy... (cached) yes
checking for obstacks that work with any size object... no
checking whether open recognizes a trailing slash... yes
checking whether perror matches strerror... yes
checking whether posix_spawn_file_actions_addclose works... yes
checking whether posix_spawn_file_actions_adddup2 works... yes
checking whether posix_spawn_file_actions_addopen works... yes
checking whether frexp works... (cached) yes
checking whether ldexp can be used without linking with libm... (cached) yes
checking whether frexpl() can be used without linking with libm... (cached) yes
checking whether frexpl works... (cached) yes
checking whether frexpl is declared... (cached) yes
checking whether ldexpl() can be used without linking with libm... (cached) yes
checking whether ldexpl works... (cached) yes
checking whether ldexpl is declared... (cached) yes
checking whether program_invocation_name is declared... (cached) yes
checking whether program_invocation_short_name is declared... (cached) yes
checking for raise... yes
checking for sigprocmask... yes
checking for rawmemchr... yes
checking for readline... yes
checking how to link with libreadline... -lreadline
checking for readline/readline.h... yes
checking for readline/history.h... yes
checking whether readlink signature is correct... yes
checking whether readlink handles trailing slash correctly... yes
checking whether readlink truncates results correctly... yes
checking whether realloc (0, 0) returns nonnull... yes
checking for reallocarray... yes
checking for getcwd... (cached) yes
checking whether free is known to preserve errno... (cached) yes
checking for mempcpy... (cached) yes
checking for rawmemchr... (cached) yes
checking for search.h... yes
checking for tsearch... yes
checking whether rename honors trailing slash on destination... yes
checking whether rename honors trailing slash on source... yes
checking whether rename manages hard links correctly... yes
checking whether rename manages existing destinations correctly... yes
checking for struct sigaction.sa_sigaction... yes
checking for signbit macro... yes
checking for signbit compiler built-ins... yes
checking for sigprocmask... (cached) yes
checking for stdint.h... (cached) yes
checking for SIZE_MAX... yes
checking for snprintf... (cached) yes
checking whether snprintf respects a size of 1... yes
checking whether printf supports POSIX/XSI format strings with positions... (cached) yes
checking for snprintf... (cached) yes
checking whether snprintf fully supports the 'n' directive... yes
checking whether snprintf respects a size of 1... (cached) yes
checking whether vsnprintf respects a zero size as in C99... yes
checking for ssize_t... yes
checking whether stat handles trailing slashes on files... yes
checking for working stdalign.h... yes
checking for stpcpy... yes
checking for working stpncpy... yes
checking for working strerror function... yes
checking for working strndup... yes
checking whether strtod obeys C99... yes
checking for strverscmp... yes
checking for sys/single_threaded.h... yes
checking whether unlink honors trailing slashes... yes
checking whether unlink of a parent directory fails as it should... guessing yes
checking for unsetenv... yes
checking for unsetenv() return type... int
checking whether unsetenv obeys POSIX... yes
checking for ptrdiff_t... yes
checking for vasprintf... yes
checking for vasprintf... (cached) yes
checking for vsnprintf... yes
checking whether snprintf respects a size of 1... (cached) yes
checking whether printf supports POSIX/XSI format strings with positions... (cached) yes
checking for vsnprintf... (cached) yes
checking whether snprintf fully supports the 'n' directive... (cached) yes
checking whether snprintf respects a size of 1... (cached) yes
checking whether vsnprintf respects a zero size as in C99... (cached) yes
checking for waitid... yes
checking whether wcwidth is declared... yes
checking whether wcwidth works reasonably in UTF-8 locales... yes
checking whether use of TIOCGWINSZ requires sys/ioctl.h... yes
checking whether use of TIOCGWINSZ requires termios.h... (cached) no
checking whether use of struct winsize requires sys/ptem.h... no
checking for stdint.h... (cached) yes
checking whether getdtablesize works... yes
checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes
checking whether setlocale (category, NULL) is multithread-safe... (cached) yes
checking whether NLS is requested... no
checking for msgfmt... no
checking for gmsgfmt... :
checking for xgettext... no
checking for msgmerge... no
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking whether to use NLS... no
checking for valgrind... no
checking Valgrind suppression file...
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating src/yacc
config.status: creating javacomp.sh
config.status: creating javaexec.sh
config.status: creating gnulib-po/Makefile.in
config.status: creating runtime-po/Makefile.in
config.status: creating etc/bench.pl
config.status: creating tests/atlocal
config.status: creating tests/bison
config.status: creating Makefile
config.status: creating po/Makefile.in
config.status: creating doc/yacc.1
config.status: creating lib/config.h
config.status: linking /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/GNUmakefile to GNUmakefile
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating gnulib-po/POTFILES
config.status: creating gnulib-po/Makefile
config.status: creating runtime-po/POTFILES
config.status: creating runtime-po/Makefile
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing tests/atconfig commands
  LEX      examples/c/reccalc/scan.stamp
  GEN      lib/alloca.h
  GEN      lib/configmake.h
  GEN      lib/fcntl.h
  GEN      lib/iconv.h
  GEN      lib/inttypes.h
  GEN      lib/textstyle.h
  GEN      lib/limits.h
  GEN      lib/locale.h
  GEN      lib/math.h
  GEN      lib/sched.h
  GEN      lib/signal.h
  GEN      lib/spawn.h
  GEN      lib/malloc/scratch_buffer.gl.h
  GEN      lib/stdio.h
  GEN      lib/stdlib.h
  GEN      lib/string.h
  GEN      lib/sys/ioctl.h
  GEN      lib/sys/resource.h
  GEN      lib/sys/stat.h
  GEN      lib/sys/time.h
  GEN      lib/sys/times.h
  GEN      lib/sys/wait.h
  GEN      lib/sys/types.h
  GEN      lib/termios.h
  GEN      lib/time.h
  GEN      lib/unistd.h
  GEN      lib/unistr.h
  GEN      lib/unitypes.h
  GEN      lib/uniwidth.h
  GEN      lib/wchar.h
  GEN      lib/wctype.h
make  install-recursive
make[1]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
Making install in po
make[2]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/po'
if test "bison" = "gettext-tools"; then \
  /usr/bin/mkdir -p /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po; \
  for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot   Makevars.template; do \
    /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/po/$file \
                    /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
  for file in Makevars; do \
    rm -f /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
else \
  : ; \
fi
make[2]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/po'
Making install in runtime-po
make[2]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/runtime-po'
if test "bison" = "gettext-tools"; then \
  /usr/bin/mkdir -p /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po; \
  for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot   Makevars.template; do \
    /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/runtime-po/$file \
                    /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
  for file in Makevars; do \
    rm -f /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
else \
  : ; \
fi
make[2]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/runtime-po'
Making install in gnulib-po
make[2]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/gnulib-po'
if test "bison" = "gettext-tools"; then \
  /usr/bin/mkdir -p /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po; \
  for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot   Makevars.template; do \
    /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/gnulib-po/$file \
                    /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
  for file in Makevars; do \
    rm -f /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
else \
  : ; \
fi
make[2]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/gnulib-po'
Making install in .
make[2]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
  CC       lib/libbison_a-setlocale_null.o
  CC       lib/libbison_a-sig-handler.o
  CC       lib/libbison_a-spawn-pipe.o
  CC       lib/glthread/libbison_a-threadlib.o
  CC       lib/libbison_a-timespec.o
  CC       lib/libbison_a-timevar.o
  CC       lib/glthread/libbison_a-tls.o
  CC       lib/libbison_a-unicodeio.o
  CC       lib/libbison_a-unistd.o
  CC       lib/libbison_a-dup-safer.o
  CC       lib/libbison_a-fd-safer.o
  CC       lib/libbison_a-pipe-safer.o
  CC       lib/libbison_a-wait-process.o
  CC       lib/libbison_a-wctype-h.o
  CC       lib/libbison_a-xmalloc.o
  CC       lib/libbison_a-xalloc-die.o
  CC       lib/libbison_a-xconcat-filename.o
  CC       lib/libbison_a-xhash.o
  CC       lib/libbison_a-gl_xlist.o
  CC       lib/libbison_a-gl_xmap.o
  CC       lib/libbison_a-xmemdup0.o
  CC       lib/libbison_a-xreadlink.o
  CC       lib/libbison_a-xsize.o
  CC       lib/libbison_a-xstrndup.o
  CC       lib/libbison_a-get-errno.o
  CC       lib/libbison_a-path-join.o
  CC       lib/libbison_a-asnprintf.o
  CC       lib/libbison_a-fcntl.o
  CC       lib/libbison_a-mbrtowc.o
  CC       lib/libbison_a-obstack.o
  CC       lib/libbison_a-printf-args.o
  CC       lib/libbison_a-printf-parse.o
  CC       lib/libbison_a-progreloc.o
  CC       lib/libbison_a-relocatable.o
  CC       lib/libbison_a-spawn_faction_addchdir.o
  CC       lib/libbison_a-vasnprintf.o
  CC       lib/main.o
  CC       lib/yyerror.o
  CC       src/bison-AnnotationList.o
  CC       src/bison-InadequacyList.o
  CC       src/bison-Sbitset.o
  CC       src/bison-assoc.o
  CC       src/bison-closure.o
  CC       src/bison-complain.o
  CC       src/bison-conflicts.o
  CC       src/bison-counterexample.o
  CC       src/bison-derivation.o
  CC       src/bison-derives.o
  CC       src/bison-files.o
  CC       src/bison-fixits.o
  CC       src/bison-getargs.o
  CC       src/bison-glyphs.o
  CC       src/bison-gram.o
  CC       src/bison-graphviz.o
  CC       src/bison-ielr.o
  CC       src/bison-lalr.o
  CC       src/bison-location.o
  CC       src/bison-lr0.o
  CC       src/bison-lssi.o
  CC       src/bison-main.o
  CC       src/bison-muscle-tab.o
  CC       src/bison-named-ref.o
  CC       src/bison-nullable.o
  CC       src/bison-output.o
  CC       src/bison-parse-gram.o
  CC       src/bison-parse-simulation.o
  CC       src/bison-print-graph.o
  CC       src/bison-print-xml.o
  CC       src/bison-print.o
  CC       src/bison-reader.o
  CC       src/bison-reduce.o
  CC       src/bison-relation.o
  CC       src/bison-scan-code-c.o
  CC       src/bison-scan-gram-c.o
  CC       src/bison-scan-skel-c.o
  CC       src/bison-state.o
  CC       src/bison-state-item.o
  CC       src/bison-strversion.o
  CC       src/bison-symlist.o
  CC       src/bison-symtab.o
  CC       src/bison-tables.o
  CC       src/bison-uniqstr.o
  CC       lib/libbison_a-allocator.o
  CC       lib/libbison_a-areadlink.o
  CC       lib/libbison_a-argmatch.o
  CC       lib/libbison_a-gl_array_list.o
  CC       lib/libbison_a-basename-lgpl.o
  CC       lib/libbison_a-binary-io.o
  CC       lib/libbison_a-bitrotate.o
  CC       lib/libbison_a-bitset.o
  CC       lib/bitset/libbison_a-array.o
  CC       lib/bitset/libbison_a-stats.o
  CC       lib/bitset/libbison_a-table.o
  CC       lib/bitset/libbison_a-list.o
  CC       lib/bitset/libbison_a-vector.o
  CC       lib/libbison_a-bitsetv.o
  CC       lib/libbison_a-c-ctype.o
  CC       lib/libbison_a-c-strcasecmp.o
  CC       lib/libbison_a-c-strncasecmp.o
  CC       lib/libbison_a-canonicalize.o
  CC       lib/libbison_a-careadlinkat.o
/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/lib/careadlinkat.c: In function 'careadlinkat':
/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/lib/careadlinkat.c:178:5: warning: #warning "GCC might issue a bogus -Wreturn-local-addr warning here." [-Wcpp]
  178 |    #warning "GCC might issue a bogus -Wreturn-local-addr warning here."
      |     ^~~~~~~
/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/lib/careadlinkat.c:179:5: warning: #warning "See <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93644>." [-Wcpp]
  179 |    #warning "See <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93644>."
      |     ^~~~~~~
  CC       lib/libbison_a-cloexec.o
/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/lib/careadlinkat.c:182:10: warning: function may return address of local variable [-Wreturn-local-addr]
  182 |   return readlink_stk (fd, filename, buffer, buffer_size, alloc,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  183 |                        preadlinkat, stack_buf);
      |                        ~~~~~~~~~~~~~~~~~~~~~~~
/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/lib/careadlinkat.c:181:8: note: declared here
  181 |   char stack_buf[STACK_BUF_SIZE];
      |        ^~~~~~~~~
/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/lib/canonicalize.c: In function 'canonicalize_filename_mode':
/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/lib/canonicalize.c:484:5: warning: #warning "GCC might issue a bogus -Wreturn-local-addr warning here." [-Wcpp]
  484 |    #warning "GCC might issue a bogus -Wreturn-local-addr warning here."
      |     ^~~~~~~
/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/lib/canonicalize.c:485:5: warning: #warning "See <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93644>." [-Wcpp]
  485 |    #warning "See <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93644>."
      |     ^~~~~~~
  CC       lib/libbison_a-close-stream.o
  CC       lib/libbison_a-closeout.o
  CC       lib/libbison_a-concat-filename.o
  CC       lib/libbison_a-dirname.o
  CC       lib/libbison_a-basename.o
  CC       lib/libbison_a-dirname-lgpl.o
  CC       lib/libbison_a-stripslash.o
  CC       lib/libbison_a-execute.o
  CC       lib/libbison_a-exitfail.o
  CC       lib/libbison_a-fatal-signal.o
  CC       lib/libbison_a-fd-safer-flag.o
  CC       lib/libbison_a-dup-safer-flag.o
  CC       lib/libbison_a-file-set.o
  CC       lib/libbison_a-findprog-in.o
  CC       lib/libbison_a-fopen-safer.o
  CC       lib/libbison_a-fstrcmp.o
  CC       lib/libbison_a-gethrxtime.o
  CC       lib/libbison_a-xtime.o
  CC       lib/libbison_a-getprogname.o
  CC       lib/libbison_a-gettime.o
  CC       lib/libbison_a-hard-locale.o
  CC       lib/libbison_a-hash.o
  CC       lib/libbison_a-gl_hash_map.o
  CC       lib/libbison_a-hash-pjw.o
  CC       lib/libbison_a-hash-triple-simple.o
  CC       lib/libbison_a-ialloc.o
  CC       lib/libbison_a-integer_length.o
  CC       lib/libbison_a-integer_length_l.o
  CC       lib/libbison_a-gl_linked_list.o
  CC       lib/libbison_a-gl_list.o
  CC       lib/libbison_a-localcharset.o
  CC       lib/glthread/libbison_a-lock.o
  CC       lib/libbison_a-gl_map.o
  CC       lib/libbison_a-math.o
  CC       lib/libbison_a-mbchar.o
  CC       lib/libbison_a-mbfile.o
  CC       lib/libbison_a-mbswidth.o
  CC       lib/libbison_a-gl_oset.o
  CC       lib/libbison_a-pipe2-safer.o
  CC       lib/libbison_a-pipe2.o
  CC       lib/libbison_a-printf-frexp.o
  CC       lib/libbison_a-printf-frexpl.o
  CC       lib/libbison_a-progname.o
  CC       lib/libbison_a-quotearg.o
  CC       lib/libbison_a-gl_rbtree_oset.o
  CC       lib/libbison_a-gl_rbtreehash_list.o
  CC       lib/malloc/libbison_a-scratch_buffer_dupfree.o
  CC       lib/malloc/libbison_a-scratch_buffer_grow.o
  CC       lib/malloc/libbison_a-scratch_buffer_grow_preserve.o
  CC       lib/malloc/libbison_a-scratch_buffer_set_array_size.o
  CC       lib/unistr/libbison_a-u8-mbtoucr.o
  CC       lib/unistr/libbison_a-u8-uctomb.o
  CC       lib/unistr/libbison_a-u8-uctomb-aux.o
  CC       lib/uniwidth/libbison_a-width.o
  AR       lib/liby.a
  AR       lib/libbison.a
  CCLD     src/bison
  GEN      /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/doc/bison.help
make[3]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//bin'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/aclocal'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++/calc++'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/bistromathic'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/m4/bison-i18n.m4 '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/aclocal'
 /usr/bin/install -c src/yacc '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//bin'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/driver.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/driver.hh /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/scanner.ll /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/calc++.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/parser.yy '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++/calc++'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/simple.yy '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/calc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d/calc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++/calc++'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/bistromathic/parse.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/bistromathic/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/bistromathic/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/bistromathic'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/calc/calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/calc/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/calc/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/calc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/d/calc/calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/d/calc/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d/calc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/README.md /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/variant.yy /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/variant-11.yy '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/README.md /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++/calc++'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/d/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/glr'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/AUTHORS /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/COPYING /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/NEWS /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/README /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/THANKS /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/TODO '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java/calc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/glr/c++-types.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/glr/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/glr/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/glr'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java/simple'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/lexcalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/m4sugar'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/mfcalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/java/calc/Calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/java/calc/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java/calc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/java/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/java/simple/Calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/java/simple/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java/simple'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/lexcalc/parse.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/lexcalc/scan.l /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/lexcalc/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/lexcalc/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/lexcalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/m4sugar/foreach.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/m4sugar/m4sugar.m4 '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/m4sugar'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/mfcalc/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/mfcalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/pushcalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/reccalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/README.md /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/bison-default.css '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/rpcalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/pushcalc/calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/pushcalc/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/pushcalc/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/pushcalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d/simple'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/reccalc/parse.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/reccalc/scan.l /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/reccalc/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/reccalc/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/reccalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/rpcalc/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/rpcalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/d/simple/calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/d/simple/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d/simple'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/skeletons'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/xslt'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/mfcalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/man/man1'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/rpcalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/xslt/bison.xsl /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/xslt/xml2dot.xsl /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/xslt/xml2text.xsl /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/xslt/xml2xhtml.xsl '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/xslt'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/bison.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/c++-skel.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/c++.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/c-like.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/c-skel.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/c.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/glr.c /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/glr.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/glr2.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/java-skel.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/java.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/lalr1.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/lalr1.java /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/location.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/stack.hh /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/traceon.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/variant.hh /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/yacc.c /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/d-skel.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/d.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/lalr1.d '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/skeletons'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/mfcalc/calc.h /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/mfcalc/mfcalc.y '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/mfcalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//bin'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/rpcalc/rpcalc.y '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/rpcalc'
  GEN      /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/doc/bison.help
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//lib'
 /usr/bin/install -c -m 644 doc/yacc.1 '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/man/man1'
  /usr/bin/install -c src/bison '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//bin'
 /usr/bin/install -c -m 644  lib/liby.a '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//lib'
 ( cd '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//lib' && ranlib liby.a )
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/info'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/doc/bison.info '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/info'
make[3]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
make[2]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
make[1]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
bison/3.8.2: Package 'fc68a6d5baa446325756edf730ba0ec59c093233' built
bison/3.8.2: Build folder /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release
bison/3.8.2: Generated conaninfo.txt
bison/3.8.2: Generated conanbuildinfo.txt
bison/3.8.2: Generating the package
bison/3.8.2: Package folder /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233
bison/3.8.2: Calling package()
bison/3.8.2: Copied 1 file: COPYING
make  install-recursive
make[1]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
Making install in po
make[2]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/po'
if test "bison" = "gettext-tools"; then \
  /usr/bin/mkdir -p /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po; \
  for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot   Makevars.template; do \
    /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/po/$file \
                    /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
  for file in Makevars; do \
    rm -f /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
else \
  : ; \
fi
make[2]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/po'
Making install in runtime-po
make[2]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/runtime-po'
if test "bison" = "gettext-tools"; then \
  /usr/bin/mkdir -p /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po; \
  for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot   Makevars.template; do \
    /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/runtime-po/$file \
                    /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
  for file in Makevars; do \
    rm -f /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
else \
  : ; \
fi
make[2]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/runtime-po'
Making install in gnulib-po
make[2]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/gnulib-po'
if test "bison" = "gettext-tools"; then \
  /usr/bin/mkdir -p /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po; \
  for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot   Makevars.template; do \
    /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/gnulib-po/$file \
                    /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
  for file in Makevars; do \
    rm -f /root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/gettext/po/$file; \
  done; \
else \
  : ; \
fi
make[2]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release/gnulib-po'
Making install in .
make[2]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
  GEN      /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/doc/bison.help
make[3]: Entering directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//bin'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/aclocal'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++/calc++'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/bistromathic'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/m4/bison-i18n.m4 '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/aclocal'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d/calc'
 /usr/bin/install -c src/yacc '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//bin'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/bistromathic/parse.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/bistromathic/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/bistromathic/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/bistromathic'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/simple.yy '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/driver.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/driver.hh /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/scanner.ll /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/calc++.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/parser.yy '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++/calc++'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/calc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++/calc++'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/d/calc/calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/d/calc/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d/calc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/calc/calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/calc/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/calc/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/calc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/README.md /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/calc++/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++/calc++'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/README.md /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/variant.yy /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c++/variant-11.yy '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c++'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/d/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/AUTHORS /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/COPYING /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/NEWS /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/README /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/THANKS /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/TODO '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/glr'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java/calc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java/simple'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/java/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/java/calc/Calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/java/calc/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java/calc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/lexcalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/glr/c++-types.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/glr/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/glr/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/glr'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/m4sugar'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/mfcalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/lexcalc/parse.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/lexcalc/scan.l /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/lexcalc/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/lexcalc/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/lexcalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/java/simple/Calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/java/simple/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/java/simple'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/m4sugar/foreach.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/m4sugar/m4sugar.m4 '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/m4sugar'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/pushcalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/reccalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/mfcalc/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/mfcalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/rpcalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d/simple'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/README.md /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/bison-default.css '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/pushcalc/calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/pushcalc/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/pushcalc/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/pushcalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/d/simple/calc.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/d/simple/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/d/simple'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/reccalc/parse.y /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/reccalc/scan.l /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/reccalc/Makefile /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/reccalc/README.md '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/reccalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/skeletons'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/rpcalc/Makefile '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/rpcalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/xslt'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/mfcalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/bison.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/c++-skel.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/c++.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/c-like.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/c-skel.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/c.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/glr.c /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/glr.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/glr2.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/java-skel.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/java.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/lalr1.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/lalr1.java /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/location.cc /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/stack.hh /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/traceon.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/variant.hh /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/yacc.c /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/d-skel.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/d.m4 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/skeletons/lalr1.d '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/skeletons'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/man/man1'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/rpcalc'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/xslt/bison.xsl /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/xslt/xml2dot.xsl /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/xslt/xml2text.xsl /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/data/xslt/xml2xhtml.xsl '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/bison/xslt'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/mfcalc/calc.h /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/mfcalc/mfcalc.y '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/mfcalc'
 /usr/bin/install -c -m 644 doc/yacc.1 '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/man/man1'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/examples/c/rpcalc/rpcalc.y '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/doc/bison/examples/c/rpcalc'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//bin'
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//lib'
  GEN      /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/doc/bison.help
 /usr/bin/install -c -m 644  lib/liby.a '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//lib'
  /usr/bin/install -c src/bison '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//bin'
 ( cd '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//lib' && ranlib liby.a )
 /usr/bin/mkdir -p '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/info'
 /usr/bin/install -c -m 644 /root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/src/doc/bison.info '/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233//res/info'
make[3]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
make[2]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
make[1]: Leaving directory '/root/.conan/data/bison/3.8.2/_/_/build/fc68a6d5baa446325756edf730ba0ec59c093233/build-release'
bison/3.8.2 package(): Packaged 23 files
bison/3.8.2 package(): Packaged 13 '.md' files
bison/3.8.2 package(): Packaged 12 '.y' files
bison/3.8.2 package(): Packaged 4 '.yy' files: variant-11.yy, simple.yy, variant.yy, parser.yy
bison/3.8.2 package(): Packaged 1 '.ll' file: scanner.ll
bison/3.8.2 package(): Packaged 6 '.cc' files
bison/3.8.2 package(): Packaged 3 '.hh' files: driver.hh, variant.hh, stack.hh
bison/3.8.2 package(): Packaged 2 '.l' files: scan.l, scan.l
bison/3.8.2 package(): Packaged 1 '.h' file: calc.h
bison/3.8.2 package(): Packaged 14 '.m4' files
bison/3.8.2 package(): Packaged 1 '.1' file: yacc.1
bison/3.8.2 package(): Packaged 1 '.info' file: bison.info
bison/3.8.2 package(): Packaged 1 '.css' file: bison-default.css
bison/3.8.2 package(): Packaged 1 '.d' file: lalr1.d
bison/3.8.2 package(): Packaged 2 '.c' files: glr.c, yacc.c
bison/3.8.2 package(): Packaged 1 '.java' file: lalr1.java
bison/3.8.2 package(): Packaged 4 '.xsl' files: xml2dot.xsl, xml2text.xsl, bison.xsl, xml2xhtml.xsl
bison/3.8.2 package(): Packaged 1 '.a' file: liby.a
bison/3.8.2: Package 'fc68a6d5baa446325756edf730ba0ec59c093233' created
bison/3.8.2: Created package revision 19960fc75e90fb5c18deb8e11af51df6
bison/3.8.2: Applying build-requirement: flex/2.6.4
dav1d/1.4.3: Applying build-requirement: meson/1.4.0
dav1d/1.4.3: Applying build-requirement: nasm/2.16.01
dav1d/1.4.3: Applying build-requirement: ninja/1.12.1
dav1d/1.4.3: Configuring sources in /root/.conan/data/dav1d/1.4.3/_/_/source/src
Downloading dav1d-1.4.3.tar.xz completed [947.35k]                                       dav1d/1.4.3: .4.3:
dav1d/1.4.3:
dav1d/1.4.3: Copying sources to build folder
dav1d/1.4.3: Building your package in /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74
dav1d/1.4.3: Generator txt created conanbuildinfo.txt
dav1d/1.4.3: Calling generate()
dav1d/1.4.3: Aggregating env generators
dav1d/1.4.3: Calling build()
dav1d/1.4.3: Meson configure cmd: meson setup --native-file "/root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/build-release/conan/conan_meson_native.ini" "/root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/build-release" "/root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/src" --prefix=/
The Meson build system
Version: 1.4.0
Source dir: /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/src
Build dir: /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/build-release
Build type: native build
Project name: dav1d
Project version: 1.4.3
C compiler for the host machine: /usr/local/bin/gcc (gcc 13.2.0 "gcc (GCC) 13.2.0")
C linker for the host machine: /usr/local/bin/gcc ld.bfd 2.40
Host machine cpu family: x86_64
Host machine cpu: x86_64
Fetching value of define "__ILP32__" : (undefined)
Run-time dependency threads found: YES
Checking for function "clock_gettime" : YES
Checking for function "posix_memalign" : YES
Library dl found: YES
Checking for function "dlsym" with dependency -ldl: YES
Library m found: YES
Check usable header "stdatomic.h" : YES
Check usable header "unistd.h" : YES
Check usable header "io.h" : NO
Check usable header "pthread_np.h" : NO
Checking for function "getopt_long" : YES
Checking for function "pthread_getaffinity_np" with dependency threads: YES
Checking for function "pthread_setaffinity_np" with dependency threads: YES
Checking if "_Generic" compiles: YES
Compiler for C supports arguments -fvisibility=hidden: YES
Compiler for C supports arguments -Wundef: YES
Compiler for C supports arguments -Werror=vla: YES
Compiler for C supports arguments -Wno-maybe-uninitialized: YES
Compiler for C supports arguments -Wno-missing-field-initializers: YES
Compiler for C supports arguments -Wno-unused-parameter: YES
Compiler for C supports arguments -Wstrict-prototypes: YES
Compiler for C supports arguments -Werror=missing-prototypes: YES
Compiler for C supports arguments -Wshorten-64-to-32: NO
Compiler for C supports arguments -fomit-frame-pointer: YES
Compiler for C supports arguments -ffast-math: YES
Fetching value of define "__AVX__" : (undefined)
Program nasm found: YES
Configuring config.asm using configuration
Configuring config.h using configuration
Configuring version.h using configuration
Found pkg-config: YES (/usr/bin/pkg-config) 1.8.1
Header "xxhash.h" has symbol "XXH3_createState" : NO
Configuring cli_config.h using configuration
Build targets in project: 7

dav1d 1.4.3

  User defined options
    Native files: /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/build-release/conan/conan_meson_native.ini
    prefix      : /

Found ninja-1.12.1 at /root/.conan/data/ninja/1.12.1/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/ninja
dav1d/1.4.3: Meson build cmd: meson compile -C "/root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/build-release" -j8
INFO: autodetecting backend as ninja
INFO: calculating backend command to run: /root/.conan/data/ninja/1.12.1/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/ninja -j 8
[1/113] Generating include/vcs_version.h with a custom command
fatal: not a git repository: '/root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/src/.git'
[113/113] Linking target tools/dav1d
dav1d/1.4.3: Package 'f96c819f3288c8dad26f1a2b0ecef7b92e68af74' built
dav1d/1.4.3: Build folder /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/build-release
dav1d/1.4.3: Generated conaninfo.txt
dav1d/1.4.3: Generated conanbuildinfo.txt
dav1d/1.4.3: Generating the package
dav1d/1.4.3: Package folder /root/.conan/data/dav1d/1.4.3/_/_/package/f96c819f3288c8dad26f1a2b0ecef7b92e68af74
dav1d/1.4.3: Calling package()
dav1d/1.4.3: Copied 1 file: COPYING
ninja: Entering directory `/root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/build-release'
[1/5] Generating include/vcs_version.h with a custom command
fatal: not a git repository: '/root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/src/.git'
Installing src/libdav1d.a to /root/.conan/data/dav1d/1.4.3/_/_/package/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/lib
Installing tools/dav1d to /root/.conan/data/dav1d/1.4.3/_/_/package/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/bin
Installing /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/src/include/dav1d/common.h to /root/.conan/data/dav1d/1.4.3/_/_/package/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/include/dav1d
Installing /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/src/include/dav1d/data.h to /root/.conan/data/dav1d/1.4.3/_/_/package/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/include/dav1d
Installing /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/src/include/dav1d/dav1d.h to /root/.conan/data/dav1d/1.4.3/_/_/package/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/include/dav1d
Installing /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/src/include/dav1d/headers.h to /root/.conan/data/dav1d/1.4.3/_/_/package/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/include/dav1d
Installing /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/src/include/dav1d/picture.h to /root/.conan/data/dav1d/1.4.3/_/_/package/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/include/dav1d
Installing /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/build-release/include/dav1d/version.h to /root/.conan/data/dav1d/1.4.3/_/_/package/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/include/dav1d
Installing /root/.conan/data/dav1d/1.4.3/_/_/build/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/build-release/meson-private/dav1d.pc to /root/.conan/data/dav1d/1.4.3/_/_/package/f96c819f3288c8dad26f1a2b0ecef7b92e68af74/lib/pkgconfig
dav1d/1.4.3 package(): Packaged 2 files: dav1d, COPYING
dav1d/1.4.3 package(): Packaged 6 '.h' files
dav1d/1.4.3 package(): Packaged 1 '.a' file: libdav1d.a
dav1d/1.4.3: Package 'f96c819f3288c8dad26f1a2b0ecef7b92e68af74' created
dav1d/1.4.3: Created package revision 5487ecea016d95105aa45a5a01c22081
freetype/2.13.2: Applying build-requirement: meson/1.3.2
freetype/2.13.2: Applying build-requirement: pkgconf/2.1.0
freetype/2.13.2: Applying build-requirement: ninja/1.12.1
Downloading conan_sources.tgz completed [0.97k]
Decompressing conan_sources.tgz completed [0.00k]
freetype/2.13.2: Configuring sources in /root/.conan/data/freetype/2.13.2/_/_/source/src
Downloading freetype-2.13.2.tar.xz completed [2443.13k]                                  freetype/2.13.2: reetype/2.13.2:
freetype/2.13.2:
freetype/2.13.2: Copying sources to build folder
freetype/2.13.2: Building your package in /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52
freetype/2.13.2: Generator txt created conanbuildinfo.txt
freetype/2.13.2: Calling generate()
freetype/2.13.2: Aggregating env generators
freetype/2.13.2: Calling build()
freetype/2.13.2: Apply patch (portability): meson: Use the standard dependency mechanism to find bzip2
freetype/2.13.2: Apply patch (portability): meson: define DLL_EXPORT for shared library only
freetype/2.13.2: Meson configure cmd: meson setup --native-file "/root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/build-release/conan/conan_meson_native.ini" "/root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/build-release" "/root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src" --prefix=/
DEPRECATION: "pkgconfig" entry is deprecated and should be replaced by "pkg-config"
The Meson build system
Version: 1.3.2
Source dir: /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src
Build dir: /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/build-release
Build type: native build
Project name: freetype2
Project version: 2.13.2
C compiler for the host machine: /usr/local/bin/gcc (gcc 13.2.0 "gcc (GCC) 13.2.0")
C linker for the host machine: /usr/local/bin/gcc ld.bfd 2.40
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program python3 found: YES (/usr/bin/python3)
Has header "unistd.h" : YES
Has header "fcntl.h" : YES
Has header "sys/mman.h" : YES
Found pkg-config: YES (/root/.conan/data/pkgconf/2.1.0/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/pkgconf) 2.1.0
Run-time dependency zlib found: YES 1.3.1
Run-time dependency bzip2 found: YES 1.0.8
Run-time dependency libpng found: YES 1.6.44
Dependency harfbuzz skipped: feature harfbuzz disabled
Run-time dependency libbrotlidec found: YES 1.1.0
Build targets in project: 5

freetype2 2.13.2

  Operating System
    OS          : linux

  Used Libraries
    Zlib        : system
    Bzip2       : yes
    Png         : yes
    Harfbuzz    : no
    Brotli      : yes

  User defined options
    Native files: /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/build-release/conan/conan_meson_native.ini
    prefix      : /

Found ninja-1.12.1 at /root/.conan/data/ninja/1.12.1/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/ninja
freetype/2.13.2: Meson build cmd: meson compile -C "/root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/build-release" -j8
INFO: autodetecting backend as ninja
INFO: calculating backend command to run: /root/.conan/data/ninja/1.12.1/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/ninja -j 8
[12/46] Compiling C object libfreetype.a.p/src_smooth_smooth.c.o
In file included from ../src/src/smooth/smooth.c:21:
../src/src/smooth/ftgrays.c: In function ‘gray_convert_glyph’:
../src/src/smooth/ftgrays.c:1979:20: warning: storing the address of local variable ‘buffer’ in ‘*worker.ycells’ [-Wdangling-pointer=]
 1979 |     ras.ycells     = (PCell*)buffer;
      |                    ^
../src/src/smooth/ftgrays.c:1961:14: note: ‘buffer’ declared here
 1961 |     TCell    buffer[FT_MAX_GRAY_POOL];
      |              ^~~~~~
../src/src/smooth/ftgrays.c:316:33: note: ‘worker’ declared here
  316 | #define RAS_ARG   gray_PWorker  worker
      |                   ~~~~~~~~~~~~~~^~~~~~
../src/src/smooth/ftgrays.c:1956:23: note: in expansion of macro ‘RAS_ARG’
 1956 |   gray_convert_glyph( RAS_ARG )
      |                       ^~~~~~~
../src/src/smooth/ftgrays.c:1972:26: warning: storing the address of local variable ‘buffer’ in ‘*worker.cell_null’ [-Wdangling-pointer=]
 1972 |     ras.cell_null        = buffer + FT_MAX_GRAY_POOL - 1;
      |                          ^
../src/src/smooth/ftgrays.c:1961:14: note: ‘buffer’ declared here
 1961 |     TCell    buffer[FT_MAX_GRAY_POOL];
      |              ^~~~~~
../src/src/smooth/ftgrays.c:316:33: note: ‘worker’ declared here
  316 | #define RAS_ARG   gray_PWorker  worker
      |                   ~~~~~~~~~~~~~~^~~~~~
../src/src/smooth/ftgrays.c:1956:23: note: in expansion of macro ‘RAS_ARG’
 1956 |   gray_convert_glyph( RAS_ARG )
      |                       ^~~~~~~
[35/46] Compiling C object libfreetype.a.p/src_truetype_truetype.c.o
In file included from ../src/src/truetype/truetype.c:22:
../src/src/truetype/ttgload.c: In function ‘load_truetype_glyph’:
../src/src/truetype/ttgload.c:1509:22: warning: storing the address of local variable ‘inc_stream’ in ‘*loader.stream’ [-Wdangling-pointer=]
 1509 |       loader->stream = &inc_stream;
      |       ~~~~~~~~~~~~~~~^~~~~~~~~~~~~
../src/src/truetype/ttgload.c:1442:21: note: ‘inc_stream’ declared here
 1442 |     FT_StreamRec    inc_stream;
      |                     ^~~~~~~~~~
../src/src/truetype/ttgload.c:1428:35: note: ‘loader’ declared here
 1428 |   load_truetype_glyph( TT_Loader  loader,
      |                        ~~~~~~~~~~~^~~~~~
[46/46] Linking static target libfreetype.a
freetype/2.13.2: Package '71fa02a1d71790465912554fa44567ad40b16e52' built
freetype/2.13.2: Build folder /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/build-release
freetype/2.13.2: Generated conaninfo.txt
freetype/2.13.2: Generated conanbuildinfo.txt
freetype/2.13.2: Generating the package
freetype/2.13.2: Package folder /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52
freetype/2.13.2: Calling package()
ninja: Entering directory `/root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/build-release'
ninja: no work to do.
Installing ftmodule.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype/config
Installing ftoption.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype/config
Installing ftconfig.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype/config
Installing libfreetype.a to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/lib
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/ft2build.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/freetype.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftadvanc.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftbbox.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftbdf.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftbitmap.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftbzip2.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftcache.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftchapters.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftcid.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftcolor.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftdriver.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/fterrdef.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/fterrors.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftfntfmt.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftgasp.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftglyph.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftgxval.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftgzip.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftimage.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftincrem.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftlcdfil.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftlist.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftlzw.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftmac.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftmm.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftmodapi.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftmoderr.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftotval.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftoutln.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftparams.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftpfr.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftrender.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftsizes.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftsnames.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftstroke.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftsynth.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftsystem.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/fttrigon.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/fttypes.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ftwinfnt.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/otsvg.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/t1tables.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/ttnameid.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/tttables.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/tttags.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/config/ftconfig.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype/config
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/config/ftheader.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype/config
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/config/ftstdlib.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype/config
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/config/integer-types.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype/config
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/config/mac-support.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype/config
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/src/include/freetype/config/public-macros.h to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/include/freetype2/freetype/config
Installing /root/.conan/data/freetype/2.13.2/_/_/build/71fa02a1d71790465912554fa44567ad40b16e52/build-release/meson-private/freetype2.pc to /root/.conan/data/freetype/2.13.2/_/_/package/71fa02a1d71790465912554fa44567ad40b16e52/lib/pkgconfig
freetype/2.13.2: Copied 1 '.TXT' file: FTL.TXT
freetype/2.13.2: Copied 1 '.TXT' file: GPLv2.TXT
freetype/2.13.2 package(): Packaged 1 file: freetype-config
freetype/2.13.2 package(): Packaged 2 '.TXT' files: FTL.TXT, GPLv2.TXT
freetype/2.13.2 package(): Packaged 1 '.txt' file: freetype-libtool-version.txt
freetype/2.13.2 package(): Packaged 54 '.h' files
freetype/2.13.2 package(): Packaged 1 '.a' file: libfreetype.a
freetype/2.13.2 package(): Packaged 2 '.cmake' files: conan-official-freetype-targets.cmake, conan-official-freetype-variables.cmake
freetype/2.13.2: Package '71fa02a1d71790465912554fa44567ad40b16e52' created
freetype/2.13.2: Created package revision 8188c5b0e19654a256c3e9ed346cc878
freetype/2.13.2: Applying build-requirement: meson/1.3.2
freetype/2.13.2: Applying build-requirement: pkgconf/2.1.0
freetype/2.13.2: Applying build-requirement: ninja/1.12.1
Downloading conan_sources.tgz completed [0.31k]
Decompressing conan_sources.tgz completed [0.00k]
libsndfile/1.2.2: Configuring sources in /root/.conan/data/libsndfile/1.2.2/_/_/source/src
Downloading libsndfile-1.2.2.tar.xz completed [713.63k]                                  libsndfile/1.2.2: /1.2.2:
libsndfile/1.2.2:
libsndfile/1.2.2: Copying sources to build folder
libsndfile/1.2.2: Building your package in /root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533
libsndfile/1.2.2: Generator txt created conanbuildinfo.txt
libsndfile/1.2.2: Calling generate()
libsndfile/1.2.2: Preset 'release' added to CMakePresets.json. Invoke it manually using 'cmake --preset release'
libsndfile/1.2.2: If your CMake version is not compatible with CMakePresets (<3.19) call cmake like: 'cmake <path> -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=/root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release/generators/conan_toolchain.cmake -DCMAKE_POLICY_DEFAULT_CMP0091=NEW -DCMAKE_BUILD_TYPE=Release'
libsndfile/1.2.2: Aggregating env generators
libsndfile/1.2.2: Calling build()
libsndfile/1.2.2: Apply patch (portability): always set CMP0091
libsndfile/1.2.2: CMake command: cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="/root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="Release" "/root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/src"
CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.


-- Using Conan toolchain: /root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release/generators/conan_toolchain.cmake
-- Conan toolchain: Setting CMAKE_POSITION_INDEPENDENT_CODE=ON (options.fPIC)
-- Conan toolchain: Setting BUILD_SHARED_LIBS = OFF
-- The C compiler identification is GNU 13.2.0
-- The CXX compiler identification is GNU 13.2.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/local/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/local/bin/g++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
--
--
-- Checking large files support...
--
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
--
-- Checking size of off_t without any definitions:
-- Check size of off_t
-- Check size of off_t - done
-- Checking of off_t without any definitions: 8
--
-- Result of checking large files support: supported


-- Conan: Component target declared 'Ogg::ogg'
-- Conan: Component target declared 'Vorbis::vorbis'
-- Conan: Component target declared 'Vorbis::vorbisenc'
-- Conan: Component target declared 'Vorbis::vorbisfile'
-- Conan: Component target declared 'vorbis::vorbisenc-alias'
-- Conan: Component target declared 'vorbis::vorbisfile-alias'
-- Conan: Target declared 'vorbis::vorbis'
-- Conan: Component target declared 'FLAC::FLAC'
-- Conan: Component target declared 'FLAC::FLAC++'
-- Conan: Target declared 'flac::flac'
-- Conan: Component target declared 'Opus::opus'
-- Found Ogg: /root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release/generators/OggConfig.cmake (found version "1.3.5")
-- Found Vorbis: /root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release/generators/VorbisConfig.cmake (found version "1.3.7")
-- Found FLAC: /root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release/generators/flac-config.cmake (found version "1.4.2")
-- Found Opus: /root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release/generators/OpusConfig.cmake (found version "1.4")
-- Found mp3lame: /root/.conan/data/libmp3lame/3.100/_/_/package/d99f136424735eabcf81f55cb3219c29fa0f8b7b/lib/libmp3lame.a
-- Conan: Component target declared 'MPG123::libmpg123'
-- Conan: Component target declared 'MPG123::libout123'
-- Conan: Component target declared 'MPG123::libsyn123'
-- Conan: Target declared 'mpg123::mpg123'
-- Looking for byteswap.h
-- Looking for byteswap.h - found
-- Looking for dlfcn.h
-- Looking for dlfcn.h - found
-- Looking for direct.h
-- Looking for direct.h - not found
-- Looking for endian.h
-- Looking for endian.h - found
-- Looking for inttypes.h
-- Looking for inttypes.h - found
-- Looking for io.h
-- Looking for io.h - not found
-- Looking for sys/time.h
-- Looking for sys/time.h - found
-- Looking for unistd.h
-- Looking for unistd.h - found
-- Looking for immintrin.h
-- Looking for immintrin.h - found
-- Looking for stdbool.h
-- Looking for stdbool.h - found
-- Check CPU architecture is x86
-- Check CPU architecture is x86 - no
-- Check CPU architecture is x64
-- Check CPU architecture is x64 - yes
-- Check size of int64_t
-- Check size of int64_t - done
-- Check size of long
-- Check size of long - done
-- Check size of long long
-- Check size of long long - done
-- Check size of ssize_t
-- Check size of ssize_t - done
-- Check size of wchar_t
-- Check size of wchar_t - done
-- Looking for floor in m
-- Looking for floor in m - found
-- Looking for sqlite3_close in sqlite3
-- Looking for sqlite3_close in sqlite3 - found
-- Looking for fstat
-- Looking for fstat - found
-- Looking for fstat64
-- Looking for fstat64 - found
-- Looking for gettimeofday
-- Looking for gettimeofday - found
-- Looking for gmtime
-- Looking for gmtime - found
-- Looking for gmtime_r
-- Looking for gmtime_r - found
-- Looking for localtime
-- Looking for localtime - found
-- Looking for localtime_r
-- Looking for localtime_r - found
-- Looking for lseek
-- Looking for lseek - found
-- Looking for open
-- Looking for open - found
-- Looking for read
-- Looking for read - found
-- Looking for write
-- Looking for write - found
-- Looking for lrint
-- Looking for lrint - found
-- Looking for lrintf
-- Looking for lrintf - found
-- Looking for ftruncate
-- Looking for ftruncate - found
-- Looking for fsync
-- Looking for fsync - found
-- Looking for S_IRGRP
-- Looking for S_IRGRP - found
-- Checking for inline...
-- Checking for inline... supported
-- Checking processor clipping capabilities...
-- Checking processor clipping capabilities... none
-- The following features have been enabled:

 * ENABLE_EXTERNAL_LIBS, enable FLAC, Vorbis, and Opus codecs
 * ENABLE_MPEG, enable MPEG audio (including mp3) codecs
 * ENABLE_PACKAGE_CONFIG, generate and install package config file
 * INSTALL_PKGCONFIG_MODULE, generate and install pkg-config module
 * INSTALL_MANPAGES, install man pages for programs

-- The following RECOMMENDED packages have been found:

 * Ogg (required version >= 1.3), library for manipulating ogg bitstreams, <www.xiph.org/ogg/>
   Required to enable Vorbis, Speex, and Opus support
 * Vorbis, open source lossy audio codec, <www.vorbis.com/>
   Enables Vorbis support
 * FLAC, Free Lossless Audio Codec Library, <www.xiph.org/flac/>
   Enables FLAC support
 * Opus, Standardized open source low-latency fullband codec, <www.opus-codec.org/>
   Enables experimental Opus support
 * mp3lame, High quality MPEG Audio Layer III (MP3) encoder, <https://lame.sourceforge.io/>
   Enables MPEG layer III (MP3) writing support
 * mpg123 (required version >= 1.25.10), MPEG Audio Layer I/II/III decoder, <https://www.mpg123.de/>
   Enables MPEG Audio reading support

-- The following features have been disabled:

 * BUILD_SHARED_LIBS, build shared libraries
 * ENABLE_EXPERIMENTAL, enable experimental code
 * BUILD_TESTING, build tests
 * BUILD_REGTEST, build regtest
 * ENABLE_CPACK, enable CPack support
 * ENABLE_CPU_CLIP, Enable tricky cpu specific clipper
 * ENABLE_BOW_DOCS, enable black-on-white html docs

-- Configuring done (3.1s)
-- Generating done (0.0s)
-- Build files have been written to: /root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release
libsndfile/1.2.2: CMake command: cmake --build "/root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release" '--' '-j8'
CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.


-- Using Conan toolchain: /root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release/generators/conan_toolchain.cmake
-- Conan toolchain: Setting CMAKE_POSITION_INDEPENDENT_CODE=ON (options.fPIC)
-- Conan toolchain: Setting BUILD_SHARED_LIBS = OFF
-- Conan: Component target declared 'Ogg::ogg'
-- Conan: Component target declared 'Vorbis::vorbis'
-- Conan: Component target declared 'Vorbis::vorbisenc'
-- Conan: Component target declared 'Vorbis::vorbisfile'
-- Conan: Component target declared 'vorbis::vorbisenc-alias'
-- Conan: Component target declared 'vorbis::vorbisfile-alias'
-- Conan: Target declared 'vorbis::vorbis'
-- Conan: Component target declared 'FLAC::FLAC'
-- Conan: Component target declared 'FLAC::FLAC++'
-- Conan: Target declared 'flac::flac'
-- Conan: Component target declared 'Opus::opus'
-- Conan: Component target declared 'MPG123::libmpg123'
-- Conan: Component target declared 'MPG123::libout123'
-- Conan: Component target declared 'MPG123::libsyn123'
-- Conan: Target declared 'mpg123::mpg123'
-- The following features have been enabled:

 * ENABLE_EXTERNAL_LIBS, enable FLAC, Vorbis, and Opus codecs
 * ENABLE_MPEG, enable MPEG audio (including mp3) codecs
 * ENABLE_PACKAGE_CONFIG, generate and install package config file
 * INSTALL_PKGCONFIG_MODULE, generate and install pkg-config module
 * INSTALL_MANPAGES, install man pages for programs

-- The following RECOMMENDED packages have been found:

 * Ogg (required version >= 1.3), library for manipulating ogg bitstreams, <www.xiph.org/ogg/>
   Required to enable Vorbis, Speex, and Opus support
 * Vorbis, open source lossy audio codec, <www.vorbis.com/>
   Enables Vorbis support
 * FLAC, Free Lossless Audio Codec Library, <www.xiph.org/flac/>
   Enables FLAC support
 * Opus, Standardized open source low-latency fullband codec, <www.opus-codec.org/>
   Enables experimental Opus support
 * mp3lame, High quality MPEG Audio Layer III (MP3) encoder, <https://lame.sourceforge.io/>
   Enables MPEG layer III (MP3) writing support
 * mpg123 (required version >= 1.25.10), MPEG Audio Layer I/II/III decoder, <https://www.mpg123.de/>
   Enables MPEG Audio reading support

-- The following features have been disabled:

 * BUILD_SHARED_LIBS, build shared libraries
 * ENABLE_EXPERIMENTAL, enable experimental code
 * BUILD_TESTING, build tests
 * BUILD_REGTEST, build regtest
 * ENABLE_CPACK, enable CPack support
 * ENABLE_CPU_CLIP, Enable tricky cpu specific clipper
 * ENABLE_BOW_DOCS, enable black-on-white html docs

-- Configuring done (0.1s)
-- Generating done (0.0s)
-- Build files have been written to: /root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release
[  0%] Building C object CMakeFiles/sndfile.dir/src/common.c.o
[  1%] Building C object CMakeFiles/sndfile.dir/src/file_io.c.o
[  2%] Building C object CMakeFiles/sndfile.dir/src/command.c.o
[  3%] Building C object CMakeFiles/sndfile.dir/src/pcm.c.o
[  4%] Building C object CMakeFiles/sndfile.dir/src/ulaw.c.o
[  4%] Building C object CMakeFiles/sndfile.dir/src/alaw.c.o
[  5%] Building C object CMakeFiles/sndfile.dir/src/float32.c.o
[  6%] Building C object CMakeFiles/sndfile.dir/src/double64.c.o
[  7%] Building C object CMakeFiles/sndfile.dir/src/ima_adpcm.c.o
[  8%] Building C object CMakeFiles/sndfile.dir/src/ms_adpcm.c.o
[  8%] Building C object CMakeFiles/sndfile.dir/src/gsm610.c.o
[  9%] Building C object CMakeFiles/sndfile.dir/src/dwvw.c.o
[ 10%] Building C object CMakeFiles/sndfile.dir/src/vox_adpcm.c.o
[ 11%] Building C object CMakeFiles/sndfile.dir/src/interleave.c.o
[ 12%] Building C object CMakeFiles/sndfile.dir/src/strings.c.o
[ 13%] Building C object CMakeFiles/sndfile.dir/src/dither.c.o
[ 13%] Building C object CMakeFiles/sndfile.dir/src/cart.c.o
[ 14%] Building C object CMakeFiles/sndfile.dir/src/broadcast.c.o
[ 15%] Building C object CMakeFiles/sndfile.dir/src/audio_detect.c.o
[ 16%] Building C object CMakeFiles/sndfile.dir/src/ima_oki_adpcm.c.o
[ 17%] Building C object CMakeFiles/sndfile.dir/src/alac.c.o
[ 17%] Building C object CMakeFiles/sndfile.dir/src/chunk.c.o
[ 18%] Building C object CMakeFiles/sndfile.dir/src/ogg.c.o
[ 19%] Building C object CMakeFiles/sndfile.dir/src/chanmap.c.o
[ 20%] Building C object CMakeFiles/sndfile.dir/src/id3.c.o
[ 21%] Building C object CMakeFiles/sndfile.dir/src/sndfile.c.o
[ 21%] Building C object CMakeFiles/sndfile.dir/src/aiff.c.o
[ 22%] Building C object CMakeFiles/sndfile.dir/src/au.c.o
[ 23%] Building C object CMakeFiles/sndfile.dir/src/avr.c.o
[ 24%] Building C object CMakeFiles/sndfile.dir/src/caf.c.o
[ 25%] Building C object CMakeFiles/sndfile.dir/src/dwd.c.o
[ 26%] Building C object CMakeFiles/sndfile.dir/src/flac.c.o
[ 26%] Building C object CMakeFiles/sndfile.dir/src/g72x.c.o
[ 27%] Building C object CMakeFiles/sndfile.dir/src/htk.c.o
[ 28%] Building C object CMakeFiles/sndfile.dir/src/ircam.c.o
[ 29%] Building C object CMakeFiles/sndfile.dir/src/macos.c.o
[ 30%] Building C object CMakeFiles/sndfile.dir/src/mat4.c.o
[ 30%] Building C object CMakeFiles/sndfile.dir/src/mat5.c.o
[ 31%] Building C object CMakeFiles/sndfile.dir/src/nist.c.o
[ 32%] Building C object CMakeFiles/sndfile.dir/src/paf.c.o
[ 33%] Building C object CMakeFiles/sndfile.dir/src/pvf.c.o
[ 34%] Building C object CMakeFiles/sndfile.dir/src/raw.c.o
[ 34%] Building C object CMakeFiles/sndfile.dir/src/rx2.c.o
[ 35%] Building C object CMakeFiles/sndfile.dir/src/sd2.c.o
[ 36%] Building C object CMakeFiles/sndfile.dir/src/sds.c.o
[ 37%] Building C object CMakeFiles/sndfile.dir/src/svx.c.o
[ 38%] Building C object CMakeFiles/sndfile.dir/src/txw.c.o
[ 39%] Building C object CMakeFiles/sndfile.dir/src/voc.c.o
[ 39%] Building C object CMakeFiles/sndfile.dir/src/wve.c.o
[ 40%] Building C object CMakeFiles/sndfile.dir/src/w64.c.o
[ 41%] Building C object CMakeFiles/sndfile.dir/src/wavlike.c.o
[ 42%] Building C object CMakeFiles/sndfile.dir/src/wav.c.o
[ 43%] Building C object CMakeFiles/sndfile.dir/src/xi.c.o
[ 43%] Building C object CMakeFiles/sndfile.dir/src/mpc2k.c.o
[ 44%] Building C object CMakeFiles/sndfile.dir/src/rf64.c.o
[ 45%] Building C object CMakeFiles/sndfile.dir/src/ogg_vorbis.c.o
[ 46%] Building C object CMakeFiles/sndfile.dir/src/ogg_speex.c.o
[ 47%] Building C object CMakeFiles/sndfile.dir/src/ogg_pcm.c.o
[ 47%] Building C object CMakeFiles/sndfile.dir/src/ogg_opus.c.o
[ 48%] Building C object CMakeFiles/sndfile.dir/src/ogg_vcomment.c.o
[ 49%] Building C object CMakeFiles/sndfile.dir/src/nms_adpcm.c.o
[ 50%] Building C object CMakeFiles/sndfile.dir/src/mpeg.c.o
[ 51%] Building C object CMakeFiles/sndfile.dir/src/mpeg_decode.c.o
[ 52%] Building C object CMakeFiles/sndfile.dir/src/mpeg_l3_encode.c.o
[ 52%] Building C object CMakeFiles/sndfile.dir/src/GSM610/add.c.o
[ 53%] Building C object CMakeFiles/sndfile.dir/src/GSM610/code.c.o
[ 54%] Building C object CMakeFiles/sndfile.dir/src/GSM610/decode.c.o
[ 55%] Building C object CMakeFiles/sndfile.dir/src/GSM610/gsm_create.c.o
[ 56%] Building C object CMakeFiles/sndfile.dir/src/GSM610/gsm_decode.c.o
[ 56%] Building C object CMakeFiles/sndfile.dir/src/GSM610/gsm_destroy.c.o
[ 57%] Building C object CMakeFiles/sndfile.dir/src/GSM610/gsm_encode.c.o
[ 58%] Building C object CMakeFiles/sndfile.dir/src/GSM610/gsm_option.c.o
[ 59%] Building C object CMakeFiles/sndfile.dir/src/GSM610/long_term.c.o
[ 60%] Building C object CMakeFiles/sndfile.dir/src/GSM610/lpc.c.o
[ 60%] Building C object CMakeFiles/sndfile.dir/src/GSM610/preprocess.c.o
[ 61%] Building C object CMakeFiles/sndfile.dir/src/GSM610/rpe.c.o
[ 62%] Building C object CMakeFiles/sndfile.dir/src/GSM610/short_term.c.o
[ 63%] Building C object CMakeFiles/sndfile.dir/src/GSM610/table.c.o
[ 64%] Building C object CMakeFiles/sndfile.dir/src/G72x/g721.c.o
[ 65%] Building C object CMakeFiles/sndfile.dir/src/G72x/g723_16.c.o
[ 65%] Building C object CMakeFiles/sndfile.dir/src/G72x/g723_24.c.o
[ 66%] Building C object CMakeFiles/sndfile.dir/src/G72x/g723_40.c.o
[ 67%] Building C object CMakeFiles/sndfile.dir/src/G72x/g72x.c.o
[ 68%] Building C object CMakeFiles/sndfile.dir/src/ALAC/ALACBitUtilities.c.o
[ 69%] Building C object CMakeFiles/sndfile.dir/src/ALAC/ag_dec.c.o
[ 69%] Building C object CMakeFiles/sndfile.dir/src/ALAC/ag_enc.c.o
[ 70%] Building C object CMakeFiles/sndfile.dir/src/ALAC/dp_dec.c.o
[ 71%] Building C object CMakeFiles/sndfile.dir/src/ALAC/dp_enc.c.o
[ 72%] Building C object CMakeFiles/sndfile.dir/src/ALAC/matrix_dec.c.o
[ 73%] Building C object CMakeFiles/sndfile.dir/src/ALAC/matrix_enc.c.o
[ 73%] Building C object CMakeFiles/sndfile.dir/src/ALAC/alac_decoder.c.o
[ 74%] Building C object CMakeFiles/sndfile.dir/src/ALAC/alac_encoder.c.o
[ 75%] Linking C static library libsndfile.a
[ 75%] Built target sndfile
[ 76%] Building C object CMakeFiles/sndfile-convert.dir/programs/sndfile-convert.c.o
[ 78%] Building C object CMakeFiles/sndfile-info.dir/programs/sndfile-info.c.o
[ 78%] Building C object CMakeFiles/sndfile-cmp.dir/programs/sndfile-cmp.c.o
[ 78%] Building C object CMakeFiles/sndfile-play.dir/programs/sndfile-play.c.o
[ 79%] Building C object CMakeFiles/sndfile-metadata-set.dir/programs/sndfile-metadata-set.c.o
[ 80%] Building C object CMakeFiles/sndfile-metadata-get.dir/programs/sndfile-metadata-get.c.o
[ 81%] Building C object CMakeFiles/sndfile-interleave.dir/programs/sndfile-interleave.c.o
[ 82%] Building C object CMakeFiles/sndfile-deinterleave.dir/programs/sndfile-deinterleave.c.o
[ 83%] Building C object CMakeFiles/sndfile-cmp.dir/programs/common.c.o
[ 84%] Building C object CMakeFiles/sndfile-interleave.dir/programs/common.c.o
[ 85%] Building C object CMakeFiles/sndfile-play.dir/programs/common.c.o
[ 86%] Building C object CMakeFiles/sndfile-deinterleave.dir/programs/common.c.o
[ 86%] Building C object CMakeFiles/sndfile-metadata-get.dir/programs/common.c.o
[ 87%] Building C object CMakeFiles/sndfile-convert.dir/programs/common.c.o
[ 88%] Building C object CMakeFiles/sndfile-metadata-set.dir/programs/common.c.o
[ 88%] Building C object CMakeFiles/sndfile-info.dir/programs/common.c.o
[ 89%] Linking C executable sndfile-cmp
[ 90%] Linking C executable sndfile-interleave
[ 91%] Linking C executable sndfile-play
[ 92%] Linking C executable sndfile-deinterleave
[ 92%] Linking C executable sndfile-convert
[ 93%] Linking C executable sndfile-metadata-set
[ 94%] Linking C executable sndfile-info
[ 95%] Linking C executable sndfile-metadata-get
[ 95%] Built target sndfile-cmp
[ 95%] Built target sndfile-interleave
[ 95%] Built target sndfile-play
[ 95%] Building C object CMakeFiles/sndfile-concat.dir/programs/sndfile-concat.c.o
[ 97%] Building C object CMakeFiles/sndfile-salvage.dir/programs/sndfile-salvage.c.o
[ 97%] Building C object CMakeFiles/sndfile-concat.dir/programs/common.c.o
[ 97%] Built target sndfile-convert
[ 98%] Building C object CMakeFiles/sndfile-salvage.dir/programs/common.c.o
[ 98%] Built target sndfile-deinterleave
[ 98%] Built target sndfile-info
[ 98%] Built target sndfile-metadata-get
[ 98%] Built target sndfile-metadata-set
[ 99%] Linking C executable sndfile-concat
[100%] Linking C executable sndfile-salvage
[100%] Built target sndfile-concat
[100%] Built target sndfile-salvage
libsndfile/1.2.2: Package '0391ee7fc8f7170258b02862f0e40101e96a7533' built
libsndfile/1.2.2: Build folder /root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release
libsndfile/1.2.2: Generated conaninfo.txt
libsndfile/1.2.2: Generated conanbuildinfo.txt
libsndfile/1.2.2: Generating the package
libsndfile/1.2.2: Package folder /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533
libsndfile/1.2.2: Calling package()
libsndfile/1.2.2: Copied 1 file: COPYING
libsndfile/1.2.2: CMake command: cmake --install "/root/.conan/data/libsndfile/1.2.2/_/_/build/0391ee7fc8f7170258b02862f0e40101e96a7533/build/Release" --prefix "/root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533"
-- Install configuration: "Release"
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/bin/sndfile-info
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/bin/sndfile-play
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/bin/sndfile-convert
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/bin/sndfile-cmp
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/bin/sndfile-metadata-set
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/bin/sndfile-metadata-get
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/bin/sndfile-interleave
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/bin/sndfile-deinterleave
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/bin/sndfile-concat
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/bin/sndfile-salvage
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/libsndfile.a
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/include/sndfile.h
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/include/sndfile.hh
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/cmake/SndFile/SndFileTargets.cmake
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/cmake/SndFile/SndFileTargets-release.cmake
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/cmake/SndFile/SndFileConfig.cmake
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/cmake/SndFile/SndFileConfigVersion.cmake
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/cmake/SndFile/FindFLAC.cmake
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/cmake/SndFile/FindOgg.cmake
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/cmake/SndFile/FindOpus.cmake
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/cmake/SndFile/FindVorbis.cmake
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/cmake/SndFile/Findmpg123.cmake
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/cmake/SndFile/Findmp3lame.cmake
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/man/man1/sndfile-info.1
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/man/man1/sndfile-play.1
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/man/man1/sndfile-convert.1
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/man/man1/sndfile-cmp.1
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/man/man1/sndfile-metadata-get.1
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/man/man1/sndfile-concat.1
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/man/man1/sndfile-interleave.1
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/man/man1/sndfile-salvage.1
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/man/man1/sndfile-metadata-set.1
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/man/man1/sndfile-deinterleave.1
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/index.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/libsndfile.jpg
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/libsndfile.css
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/print.css
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/api.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/command.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/bugs.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/formats.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/sndfile_info.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/new_file_type_howto.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/win32.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/FAQ.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/lists.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/embedded_files.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/octave.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/share/doc/libsndfile/tutorial.md
-- Installing: /root/.conan/data/libsndfile/1.2.2/_/_/package/0391ee7fc8f7170258b02862f0e40101e96a7533/lib/pkgconfig/sndfile.pc
libsndfile/1.2.2 package(): Packaged 11 files
libsndfile/1.2.2 package(): Packaged 1 '.hh' file: sndfile.hh
libsndfile/1.2.2 package(): Packaged 1 '.h' file: sndfile.h
libsndfile/1.2.2 package(): Packaged 1 '.a' file: libsndfile.a
libsndfile/1.2.2: Package '0391ee7fc8f7170258b02862f0e40101e96a7533' created
libsndfile/1.2.2: Created package revision 4978a93d1ad0d2bdeabd29559edea24a
openh264/2.4.1: Applying build-requirement: meson/1.4.1
openh264/2.4.1: Applying build-requirement: pkgconf/2.2.0
openh264/2.4.1: Applying build-requirement: nasm/2.16.01
openh264/2.4.1: Applying build-requirement: ninja/1.12.1
openh264/2.4.1: Configuring sources in /root/.conan/data/openh264/2.4.1/_/_/source/src
Downloading v2.4.1.tar.gz completed [58884.09k]                                          openh264/2.4.1:
openh264/2.4.1:
openh264/2.4.1: Copying sources to build folder
openh264/2.4.1: Building your package in /root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a
openh264/2.4.1: Generator txt created conanbuildinfo.txt
openh264/2.4.1: Calling generate()
openh264/2.4.1: Aggregating env generators
openh264/2.4.1: Calling build()
openh264/2.4.1: Meson configure cmd: meson setup --native-file "/root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/build-release/conan/conan_meson_native.ini" "/root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/build-release" "/root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/src" --prefix=/
DEPRECATION: "pkgconfig" entry is deprecated and should be replaced by "pkg-config"
The Meson build system
Version: 1.4.1
Source dir: /root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/src
Build dir: /root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/build-release
Build type: native build
Project name: openh264
Project version: 2.4.1
C compiler for the host machine: /usr/local/bin/gcc (gcc 13.2.0 "gcc (GCC) 13.2.0")
C linker for the host machine: /usr/local/bin/gcc ld.bfd 2.40
C++ compiler for the host machine: /usr/local/bin/g++ (gcc 13.2.0 "g++ (GCC) 13.2.0")
C++ linker for the host machine: /usr/local/bin/g++ ld.bfd 2.40
Host machine cpu family: x86_64
Host machine cpu: x86_64
Compiler for C++ supports arguments -Wno-non-virtual-dtor: YES
Compiler for C++ supports arguments -Wno-class-memaccess: YES
Compiler for C++ supports arguments -Wno-strict-aliasing: YES
Run-time dependency threads found: YES
Library m found: YES
Program nasm found: YES
Found pkg-config: YES (/root/.conan/data/pkgconf/2.2.0/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/pkgconf) 2.2.0
Build targets in project: 8

openh264 2.4.1

  User defined options
    Native files: /root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/build-release/conan/conan_meson_native.ini
    prefix      : /

Found ninja-1.12.1 at /root/.conan/data/ninja/1.12.1/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/ninja
openh264/2.4.1: Meson build cmd: meson compile -C "/root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/build-release" -j8
INFO: autodetecting backend as ninja
INFO: calculating backend command to run: /root/.conan/data/ninja/1.12.1/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/ninja -j 8
[121/121] Linking target codec/console/dec/h264dec
openh264/2.4.1: Package '332c555edf7a7cf6f6204007428878918d4c1f1a' built
openh264/2.4.1: Build folder /root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/build-release
openh264/2.4.1: Generated conaninfo.txt
openh264/2.4.1: Generated conanbuildinfo.txt
openh264/2.4.1: Generating the package
openh264/2.4.1: Package folder /root/.conan/data/openh264/2.4.1/_/_/package/332c555edf7a7cf6f6204007428878918d4c1f1a
openh264/2.4.1: Calling package()
openh264/2.4.1: Copied 1 file: LICENSE
ninja: Entering directory `/root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/build-release'
ninja: no work to do.
Installing libopenh264.a to /root/.conan/data/openh264/2.4.1/_/_/package/332c555edf7a7cf6f6204007428878918d4c1f1a/lib
Installing /root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/src/codec/api/wels/codec_api.h to /root/.conan/data/openh264/2.4.1/_/_/package/332c555edf7a7cf6f6204007428878918d4c1f1a/include/wels
Installing /root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/src/codec/api/wels/codec_app_def.h to /root/.conan/data/openh264/2.4.1/_/_/package/332c555edf7a7cf6f6204007428878918d4c1f1a/include/wels
Installing /root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/src/codec/api/wels/codec_def.h to /root/.conan/data/openh264/2.4.1/_/_/package/332c555edf7a7cf6f6204007428878918d4c1f1a/include/wels
Installing /root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/src/codec/api/wels/codec_ver.h to /root/.conan/data/openh264/2.4.1/_/_/package/332c555edf7a7cf6f6204007428878918d4c1f1a/include/wels
Installing /root/.conan/data/openh264/2.4.1/_/_/build/332c555edf7a7cf6f6204007428878918d4c1f1a/build-release/meson-private/openh264.pc to /root/.conan/data/openh264/2.4.1/_/_/package/332c555edf7a7cf6f6204007428878918d4c1f1a/lib/pkgconfig
openh264/2.4.1 package(): Packaged 1 file: LICENSE
openh264/2.4.1 package(): Packaged 4 '.h' files: codec_ver.h, codec_api.h, codec_def.h, codec_app_def.h
openh264/2.4.1 package(): Packaged 1 '.a' file: libopenh264.a
openh264/2.4.1: Package '332c555edf7a7cf6f6204007428878918d4c1f1a' created
openh264/2.4.1: Created package revision cb3fa724ab94b812679d3d909da679cf
wayland/1.22.0: Applying build-requirement: meson/1.4.0
wayland/1.22.0: Applying build-requirement: pkgconf/2.1.0
wayland/1.22.0: Applying build-requirement: ninja/1.12.1
wayland/1.22.0: Configuring sources in /root/.conan/data/wayland/1.22.0/_/_/source/src
Downloading wayland-1.22.0.tar.xz completed [224.16k]                                    wayland/1.22.0: nd/1.22.0:
wayland/1.22.0:
wayland/1.22.0: Copying sources to build folder
wayland/1.22.0: Building your package in /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2
wayland/1.22.0: Generator txt created conanbuildinfo.txt
wayland/1.22.0: Calling generate()
wayland/1.22.0: Aggregating env generators
wayland/1.22.0: Calling build()
wayland/1.22.0: Meson configure cmd: meson setup --native-file "/root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release/conan/conan_meson_native.ini" "/root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release" "/root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src" --prefix=/
DEPRECATION: "pkgconfig" entry is deprecated and should be replaced by "pkg-config"
The Meson build system
Version: 1.4.0
Source dir: /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src
Build dir: /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release
Build type: native build
Project name: wayland
Project version: 1.22.0
C compiler for the host machine: /usr/local/bin/gcc (gcc 13.2.0 "gcc (GCC) 13.2.0")
C linker for the host machine: /usr/local/bin/gcc ld.bfd 2.40
Host machine cpu family: x86_64
Host machine cpu: x86_64
Compiler for C supports arguments -Wno-unused-parameter: YES
Compiler for C supports arguments -Wstrict-prototypes: YES
Compiler for C supports arguments -Wmissing-prototypes: YES
Compiler for C supports arguments -fvisibility=hidden: YES
Has header "sys/prctl.h" : YES
Has header "sys/procctl.h" : NO
Has header "sys/ucred.h" : NO
Checking for function "accept4" : YES
Checking for function "mkostemp" : YES
Checking for function "posix_fallocate" : YES
Checking for function "prctl" : YES
Checking for function "memfd_create" : YES
Checking for function "mremap" : YES
Checking for function "strndup" : YES
Checking whether type "struct xucred" has member "cr_pid" : NO
Found pkg-config: YES (/root/.conan/data/pkgconf/2.1.0/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/pkgconf) 2.1.0
Run-time dependency libffi found: YES 3.4.4
Header "sys/signalfd.h" has symbol "SFD_CLOEXEC" : YES
Header "sys/timerfd.h" has symbol "TFD_CLOEXEC" : YES
Header "time.h" has symbol "CLOCK_MONOTONIC" : YES
Checking for function "clock_gettime" : NO
Library rt found: YES
Checking for function "clock_gettime" with dependency -lrt: YES
Configuring config.h using configuration
Configuring wayland-version.h using configuration
Run-time dependency expat found: YES 2.6.3
Run-time dependency libxml-2.0 found: YES 2.13.4
Program embed.py found: YES (/usr/bin/python3 /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/src/embed.py)
Library m found: YES
Run-time dependency threads found: YES
Program nm found: YES (/usr/bin/nm)
Program wayland-egl-symbols-check found: YES (/root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/egl/wayland-egl-symbols-check)
Build targets in project: 14
NOTICE: Future-deprecated features used:
 * 0.62.0: {'pkgconfig.generate variable for builtin directories'}

wayland 1.22.0

  User defined options
    Native files: /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release/conan/conan_meson_native.ini
    prefix      : /

Found ninja-1.12.1 at /root/.conan/data/ninja/1.12.1/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/ninja
wayland/1.22.0: Meson build cmd: meson compile -C "/root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release" -j8
INFO: autodetecting backend as ninja
INFO: calculating backend command to run: /root/.conan/data/ninja/1.12.1/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/ninja -j 8
[23/29] Compiling C object cursor/libwayland-cursor.a.p/xcursor.c.o
../src/cursor/xcursor.c: In function ‘xcursor_load_theme’:
../src/cursor/xcursor.c:596:39: warning: ‘%s’ directive output between 7 and 7 bytes may cause result to exceed ‘INT_MAX’ [-Wformat-truncation=]
  596 |         snprintf(full, full_size, "%s/%s/%s", dir, subdir, file);
      |                                       ^~
......
  764 |                 full = xcursor_build_fullname(dir, "cursors", "");
      |                                                    ~~~~~~~~~
../src/cursor/xcursor.c:596:41: warning: ‘/’ directive output between 1 and 1 bytes may cause result to exceed ‘INT_MAX’ [-Wformat-truncation=]
  596 |         snprintf(full, full_size, "%s/%s/%s", dir, subdir, file);
      |                                         ^
[28/29] Compiling C object src/libwayland-server.a.p/wayland-server.c.o
../src/src/wayland-server.c: In function ‘wl_display_terminate’:
../src/src/wayland-server.c:1477:13: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable]
 1477 |         int ret;
      |             ^~~
[29/29] Linking static target src/libwayland-server.a
wayland/1.22.0: Package '9f50e1b10da4cb873965aabc2672371a4b3ea0c2' built
wayland/1.22.0: Build folder /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release
wayland/1.22.0: Generated conaninfo.txt
wayland/1.22.0: Generated conanbuildinfo.txt
wayland/1.22.0: Generating the package
wayland/1.22.0: Package folder /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2
wayland/1.22.0: Calling package()
wayland/1.22.0: Copied 1 file: COPYING
ninja: Entering directory `/root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release'
ninja: no work to do.
Installing src/wayland-scanner to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/bin
Installing src/wayland-server-protocol.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing src/wayland-client-protocol.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing src/libwayland-server.a to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/lib
Installing src/libwayland-client.a to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/lib
Installing cursor/libwayland-cursor.a to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/lib
Installing egl/libwayland-egl.a to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/lib
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/src/wayland-util.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/src/wayland-server.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/src/wayland-server-core.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/src/wayland-client.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/src/wayland-client-core.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/cursor/wayland-cursor.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/egl/wayland-egl.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/egl/wayland-egl-core.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/egl/wayland-egl-backend.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release/src/wayland-version.h to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/include
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release/meson-private/wayland-scanner.pc to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/lib/pkgconfig
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release/meson-private/wayland-server.pc to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/lib/pkgconfig
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release/meson-private/wayland-client.pc to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/lib/pkgconfig
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release/meson-private/wayland-cursor.pc to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/lib/pkgconfig
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release/meson-private/wayland-egl.pc to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/lib/pkgconfig
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/build-release/meson-private/wayland-egl-backend.pc to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/lib/pkgconfig
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/wayland-scanner.mk to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/res/wayland
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/protocol/wayland.xml to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/res/wayland
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/protocol/wayland.dtd to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/res/wayland
Installing /root/.conan/data/wayland/1.22.0/_/_/build/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/src/wayland-scanner.m4 to /root/.conan/data/wayland/1.22.0/_/_/package/9f50e1b10da4cb873965aabc2672371a4b3ea0c2/res/aclocal
wayland/1.22.0 package(): Packaged 2 files: wayland-scanner, COPYING
wayland/1.22.0 package(): Packaged 1 '.dtd' file: wayland.dtd
wayland/1.22.0 package(): Packaged 1 '.mk' file: wayland-scanner.mk
wayland/1.22.0 package(): Packaged 1 '.xml' file: wayland.xml
wayland/1.22.0 package(): Packaged 1 '.m4' file: wayland-scanner.m4
wayland/1.22.0 package(): Packaged 12 '.h' files
wayland/1.22.0 package(): Packaged 4 '.a' files: libwayland-server.a, libwayland-cursor.a, libwayland-client.a, libwayland-egl.a
wayland/1.22.0: Package '9f50e1b10da4cb873965aabc2672371a4b3ea0c2' created
wayland/1.22.0: Created package revision 3d4d1a6e8c6b20260a3656e9dc9b45a5
wayland/1.22.0: Applying build-requirement: meson/1.4.0
wayland/1.22.0: Applying build-requirement: pkgconf/2.1.0
wayland/1.22.0: Applying build-requirement: ninja/1.12.1
wayland/1.22.0: Applying build-requirement: meson/1.4.0
wayland/1.22.0: Applying build-requirement: pkgconf/2.1.0
wayland/1.22.0: Applying build-requirement: ninja/1.12.1
fontconfig/2.15.0: Applying build-requirement: gperf/3.1
fontconfig/2.15.0: Applying build-requirement: meson/1.4.0
fontconfig/2.15.0: Applying build-requirement: pkgconf/2.1.0
fontconfig/2.15.0: Applying build-requirement: ninja/1.12.1
fontconfig/2.15.0: Configuring sources in /root/.conan/data/fontconfig/2.15.0/_/_/source/src
Downloading fontconfig-2.15.0.tar.xz:  99%|#########9| 1.37M/1.38M [00:01<00:00, 1.51MB/s]fontconfig/2.15.0: fontconfig/2.15.0:Downloading fontconfig-2.15.0.tar.xz completed [1413.89k]                                fontconfig/2.15.0:
fontconfig/2.15.0:
fontconfig/2.15.0: Copying sources to build folder
fontconfig/2.15.0: Building your package in /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16
fontconfig/2.15.0: Generator txt created conanbuildinfo.txt
fontconfig/2.15.0: Calling generate()
fontconfig/2.15.0: Aggregating env generators
fontconfig/2.15.0: Calling build()
fontconfig/2.15.0: apply_conandata_patches(): No patches defined in conandata
fontconfig/2.15.0: Meson configure cmd: meson setup --native-file "/root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/build-release/conan/conan_meson_native.ini" "/root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/build-release" "/root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src" --prefix=/
DEPRECATION: "pkgconfig" entry is deprecated and should be replaced by "pkg-config"
The Meson build system
Version: 1.4.0
Source dir: /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src
Build dir: /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/build-release
Build type: native build
Project name: fontconfig
Project version: 2.15.0
C compiler for the host machine: /usr/local/bin/gcc (gcc 13.2.0 "gcc (GCC) 13.2.0")
C linker for the host machine: /usr/local/bin/gcc ld.bfd 2.40
Host machine cpu family: x86_64
Host machine cpu: x86_64
Found pkg-config: YES (/root/.conan/data/pkgconf/2.1.0/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/pkgconf) 2.1.0
Run-time dependency freetype2 found: YES 26.1.20
Run-time dependency expat found: YES 2.6.3
Program python3 found: YES (/usr/bin/python3)
Has header "dirent.h" : YES
Has header "fcntl.h" : YES
Has header "stdlib.h" : YES
Has header "string.h" : YES
Has header "unistd.h" : YES
Has header "sys/statvfs.h" : YES
Has header "sys/vfs.h" : YES
Has header "sys/statfs.h" : YES
Has header "sys/param.h" : YES
Has header "sys/mount.h" : YES
Checking for function "link" : YES
Checking for function "mkstemp" : YES
Checking for function "mkostemp" : YES
Checking for function "_mktemp_s" : NO
Checking for function "mkdtemp" : YES
Checking for function "getopt" : YES
Checking for function "getopt_long" : YES
Checking for function "getprogname" : NO
Checking for function "getexecname" : NO
Checking for function "rand" : YES
Checking for function "random" : YES
Checking for function "lrand48" : YES
Checking for function "random_r" : YES
Checking for function "rand_r" : YES
Checking for function "readlink" : YES
Checking for function "fstatvfs" : YES
Checking for function "fstatfs" : YES
Checking for function "lstat" : YES
Checking for function "mmap" : YES
Checking for function "vprintf" : YES
Checking for function "FT_Get_BDF_Property" with dependency freetype2: YES
Checking for function "FT_Get_PS_Font_Info" with dependency freetype2: YES
Checking for function "FT_Has_PS_Glyph_Names" with dependency freetype2: YES
Checking for function "FT_Get_X11_Font_Format" with dependency freetype2: YES
Checking for function "FT_Done_MM_Var" with dependency freetype2: YES
Header "fcntl.h" has symbol "posix_fadvise" : YES
Checking whether type "struct statvfs" has member "f_basetype" : NO
Checking whether type "struct statvfs" has member "f_fstypename" : NO
Checking whether type "struct statfs" has member "f_flags" : NO
Checking whether type "struct statfs" has member "f_fstypename" : NO
Checking whether type "struct dirent" has member "d_type" : YES
Checking for size of "void *" : 8 (cached)
Checking for alignment of "void *" : 8
Checking for alignment of "double" : 8
Checking if "stdatomic.h atomics" : links: YES
Checking if "Intel atomics" : links: YES
Checking if "Solaris atomic ops" : links: NO
Dependency iconv skipped: feature iconv disabled
Run-time dependency threads found: YES
Program gperf found: YES (/root/.conan/data/gperf/3.1/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/gperf)
Message: gperf len type is size_t
Checking for type "uint64_t" : YES
Checking for type "int32_t" : YES
Checking for type "uintptr_t" : YES
Checking for type "intptr_t" : YES
Program fc-case.py found: YES (/root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/fc-case/fc-case.py)
Program fc-lang.py found: YES (/root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/fc-lang/fc-lang.py)
Program write-35-lang-normalize-conf.py found: YES (/root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/write-35-lang-normalize-conf.py)
Configuring README using configuration
Program xgettext skipped: feature nls disabled
Configuring config.h using configuration
Configuring fonts.conf using configuration
Build targets in project: 8
NOTICE: Future-deprecated features used:
 * 0.64.0: {'copy arg in configure_file'}

fontconfig 2.15.0

  General
    Documentation              : NO
    NLS                        : NO
    Tests                      : NO
    Tools                      : NO
    iconv                      : NO

  Defaults
    Hinting                    : slight
    Font directories           : /usr/share/fonts, /usr/local/share/fonts
    Additional font directories:

  Paths
    Cache directory            : /var/cache/fontconfig
    Template directory         : /res/share/fontconfig/conf.avail
    Base config directory      : /res/etc/fonts
    Config directory           : /res/etc/fonts/conf.d
    XML directory              : /res/share/xml/fontconfig

  User defined options
    Native files               : /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/build-release/conan/conan_meson_native.ini
    prefix                     : /

Found ninja-1.12.1 at /root/.conan/data/ninja/1.12.1/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/ninja
fontconfig/2.15.0: Meson build cmd: meson compile -C "/root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/build-release" -j8
INFO: autodetecting backend as ninja
INFO: calculating backend command to run: /root/.conan/data/ninja/1.12.1/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/ninja -j 8
[20/36] Compiling C object src/libfontconfig.a.p/fccharset.c.o
../src/src/fccharset.c: In function ‘FcCharSetPutLeaf’:
../src/src/fccharset.c:202:18: warning: pointer ‘leaves’ may be used after ‘realloc’ [-Wuse-after-free]
  202 |         distance = (char *) new_leaves - (char *) leaves;
      |         ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/src/fccharset.c:187:22: note: call to ‘realloc’ here
  187 |         new_leaves = realloc (leaves, alloced * sizeof (*leaves));
      |                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[36/36] Linking static target src/libfontconfig.a
fontconfig/2.15.0: Package 'a0cf204fb51b03c2eb94d09e23a6fd1debd22c16' built
fontconfig/2.15.0: Build folder /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/build-release
fontconfig/2.15.0: Generated conaninfo.txt
fontconfig/2.15.0: Generated conanbuildinfo.txt
fontconfig/2.15.0: Generating the package
fontconfig/2.15.0: Package folder /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16
fontconfig/2.15.0: Calling package()
fontconfig/2.15.0: Copied 1 file: COPYING
ninja: Entering directory `/root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/build-release'
ninja: no work to do.
Installing src/libfontconfig.a to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/lib
Installing conf.d/35-lang-normalize.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/fontconfig/fontconfig.h to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/include/fontconfig
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/fontconfig/fcfreetype.h to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/include/fontconfig
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/fontconfig/fcprivate.h to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/include/fontconfig
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/build-release/meson-private/fontconfig.pc to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/lib/pkgconfig
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/05-reset-dirs-sample.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/09-autohint-if-no-hinting.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-autohint.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-hinting-full.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-hinting-medium.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-hinting-none.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-hinting-slight.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-no-antialias.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-scale-bitmap-fonts.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-sub-pixel-bgr.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-sub-pixel-none.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-sub-pixel-rgb.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-sub-pixel-vbgr.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-sub-pixel-vrgb.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-unhinted.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/10-yes-antialias.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/11-lcdfilter-default.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/11-lcdfilter-legacy.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/11-lcdfilter-light.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/11-lcdfilter-none.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/20-unhint-small-vera.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/25-unhint-nonlatin.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/30-metric-aliases.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/40-nonlatin.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/45-generic.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/45-latin.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/48-spacing.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/49-sansserif.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/50-user.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/51-local.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/60-generic.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/60-latin.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/65-fonts-persian.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/65-khmer.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/65-nonlatin.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/69-unifont.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/70-no-bitmaps.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/70-yes-bitmaps.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/80-delicious.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/90-synthetic.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/fontconfig/conf.avail
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/build-release/conf.d/README to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/etc/fonts/conf.d
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/its/fontconfig.its to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/gettext/its
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/its/fontconfig.loc to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/gettext/its
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/build-release/fonts.conf to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/etc/fonts
Installing /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/fonts.dtd to /root/.conan/data/fontconfig/2.15.0/_/_/package/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/res/share/xml/fontconfig
Running custom install script '/usr/bin/python3 /root/.conan/data/fontconfig/2.15.0/_/_/build/a0cf204fb51b03c2eb94d09e23a6fd1debd22c16/src/conf.d/link_confs.py /res/share/fontconfig/conf.avail /res/etc/fonts/conf.d 10-hinting-slight.conf 10-scale-bitmap-fonts.conf 10-sub-pixel-none.conf 10-yes-antialias.conf 11-lcdfilter-default.conf 20-unhint-small-vera.conf 30-metric-aliases.conf 40-nonlatin.conf 45-generic.conf 45-latin.conf 48-spacing.conf 49-sansserif.conf 50-user.conf 51-local.conf 60-generic.conf 60-latin.conf 65-fonts-persian.conf 65-nonlatin.conf 69-unifont.conf 80-delicious.conf 90-synthetic.conf'
fontconfig/2.15.0 package(): Packaged 2 files: COPYING, README
fontconfig/2.15.0 package(): Packaged 42 '.conf' files
fontconfig/2.15.0 package(): Packaged 1 '.its' file: fontconfig.its
fontconfig/2.15.0 package(): Packaged 1 '.loc' file: fontconfig.loc
fontconfig/2.15.0 package(): Packaged 1 '.dtd' file: fonts.dtd
fontconfig/2.15.0 package(): Packaged 3 '.h' files: fontconfig.h, fcfreetype.h, fcprivate.h
fontconfig/2.15.0 package(): Packaged 1 '.a' file: libfontconfig.a
fontconfig/2.15.0: Package 'a0cf204fb51b03c2eb94d09e23a6fd1debd22c16' created
fontconfig/2.15.0: Created package revision 2019f1109936c508df94412bb80c2c9c
fontconfig/2.15.0: Applying build-requirement: gperf/3.1
fontconfig/2.15.0: Applying build-requirement: meson/1.4.0
fontconfig/2.15.0: Applying build-requirement: pkgconf/2.1.0
fontconfig/2.15.0: Applying build-requirement: ninja/1.12.1
libtool/2.4.7: Applying build-requirement: gnu-config/cci.20210814
Downloading conan_sources.tgz completed [0.77k]
Decompressing conan_sources.tgz completed [0.00k]
libtool/2.4.7: Configuring sources in /root/.conan/data/libtool/2.4.7/_/_/source/src
Downloading libtool-2.4.7.tar.gz completed [1893.44k]                                    libtool/2.4.7: tool/2.4.7:
libtool/2.4.7:
libtool/2.4.7: Copying sources to build folder
libtool/2.4.7: Building your package in /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679
libtool/2.4.7: Generator txt created conanbuildinfo.txt
libtool/2.4.7: Calling generate()
libtool/2.4.7: Aggregating env generators
libtool/2.4.7: Calling build()
libtool/2.4.7: Apply patch (portability): Make libtool relocatable
libtool/2.4.7: Calling:
 > "/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/configure" '--disable-shared' '--enable-static' '--prefix=/' '--bindir=${prefix}/bin' '--sbindir=${prefix}/bin' '--libdir=${prefix}/lib' '--includedir=${prefix}/include' '--oldincludedir=${prefix}/include' '--datarootdir=${prefix}/res' '--enable-shared' '--enable-static' '--enable-ltdl-install'
## ------------------------- ##
## Configuring libtool 2.4.7 ##
## ------------------------- ##

checking for GNU M4 that supports accurate traces... /root/.conan/data/m4/1.4.19/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/m4
checking whether /root/.conan/data/m4/1.4.19/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/m4 accepts --gnu... yes
checking how m4 supports trace files... --debugfile
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
configure: autobuild project... GNU Libtool
configure: autobuild revision... 2.4.7
configure: autobuild hostname... e1f8808b15fd
configure: autobuild mode... default
configure: autobuild timestamp... 20241206T210810Z
checking for gcc... /usr/local/bin/gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /usr/local/bin/gcc accepts -g... yes
checking for /usr/local/bin/gcc option to accept ISO C89... none needed
checking whether /usr/local/bin/gcc understands -c and -o together... yes
checking whether the compiler is clang... no
checking for compiler option needed when checking for declarations... none
checking whether make supports the include directive... yes (GNU style)
checking dependency style of /usr/local/bin/gcc... gcc3
checking how to run the C preprocessor... /usr/local/bin/gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for Minix Amsterdam compiler... no
checking for ar... ar
checking for ranlib... ranlib
checking how to run the C preprocessor... /usr/local/bin/gcc -E
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by /usr/local/bin/gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for file... file
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... (cached) ranlib
checking command to parse /usr/bin/nm -B output from /usr/local/bin/gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if /usr/local/bin/gcc supports -fno-rtti -fno-exceptions... no
checking for /usr/local/bin/gcc option to produce PIC... -fPIC -DPIC
checking if /usr/local/bin/gcc PIC flag -fPIC -DPIC works... yes
checking if /usr/local/bin/gcc static flag -static works... yes
checking if /usr/local/bin/gcc supports -c -o file.o... yes
checking if /usr/local/bin/gcc supports -c -o file.o... (cached) yes
checking whether the /usr/local/bin/gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... no
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking what extension is used for runtime loadable modules... .so
checking what variable specifies run-time module search path... LD_LIBRARY_PATH
checking for the default library search path... /lib /usr/lib /usr/local/lib64 /usr/local/lib /usr/local/lib /usr/local/lib/x86_64-linux-gnu /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu /lib32 /usr/lib32
checking for library containing dlopen... none required
checking for dlerror... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dld_link in -ldld... no
checking for _ prefix in compiled symbols... no
checking whether deplibs are loaded by dlopen... yes
checking for argz.h... yes
checking for error_t... yes
checking for argz_add... yes
checking for argz_append... yes
checking for argz_count... yes
checking for argz_create_sep... yes
checking for argz_insert... yes
checking for argz_next... yes
checking for argz_stringify... yes
checking if argz actually works... yes
checking whether libtool supports -dlopen/-dlpreopen... yes
checking for unistd.h... (cached) yes
checking for dl.h... no
checking for sys/dl.h... no
checking for dld.h... no
checking for mach-o/dyld.h... no
checking for dirent.h... yes
checking for closedir... yes
checking for opendir... yes
checking for readdir... yes
checking for strlcat... no
checking for strlcpy... no
checking whether we are using the GNU C++ compiler... yes
checking whether /usr/local/bin/g++ accepts -g... yes
checking dependency style of /usr/local/bin/g++... gcc3
checking how to run the C++ preprocessor... /usr/local/bin/g++ -E
checking for ld used by /usr/local/bin/g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the /usr/local/bin/g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for /usr/local/bin/g++ option to produce PIC... -fPIC -DPIC
checking if /usr/local/bin/g++ PIC flag -fPIC -DPIC works... yes
checking if /usr/local/bin/g++ static flag -static works... yes
checking if /usr/local/bin/g++ supports -c -o file.o... yes
checking if /usr/local/bin/g++ supports -c -o file.o... (cached) yes
checking whether the /usr/local/bin/g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... gfortran
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether gfortran accepts -g... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for gfortran option to produce PIC... -fPIC
checking if gfortran PIC flag -fPIC works... yes
checking if gfortran static flag -static works... yes
checking if gfortran supports -c -o file.o... yes
checking if gfortran supports -c -o file.o... (cached) yes
checking whether the gfortran linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for gfortran... gfortran
checking whether we are using the GNU Fortran compiler... yes
checking whether gfortran accepts -g... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for gfortran option to produce PIC... -fPIC
checking if gfortran PIC flag -fPIC works... yes
checking if gfortran static flag -static works... yes
checking if gfortran supports -c -o file.o... yes
checking if gfortran supports -c -o file.o... (cached) yes
checking whether the gfortran linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for gccgo... gccgo
checking if gccgo supports -fno-rtti -fno-exceptions... (cached) no
checking for gccgo option to produce PIC... -fPIC
checking if gccgo PIC flag -fPIC works... yes
checking if gccgo static flag -static works... yes
checking if gccgo supports -c -o file.o... yes
checking if gccgo supports -c -o file.o... (cached) yes
checking whether the gccgo linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking how to hardcode library paths into programs... immediate
checking for gcj... no
checking for windres... no
checking for C compiler option to allow warnings... -Wno-error
checking for C++ compiler option to allow warnings... -Wno-error
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating gnulib-tests/Makefile
config.status: creating config.h
config.status: linking /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/GNUmakefile to GNUmakefile
config.status: executing tests/atconfig commands
config.status: executing depfiles commands
config.status: executing libtool commands
  GEN      libtoolize
make  all-recursive
make[1]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release'
Making all in .
make[2]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release'
  CC       libltdl/loaders/libltdl_la-preopen.lo
  CC       libltdl/loaders/dlopen.lo
  CC       libltdl/lt__strl.lo
  CC       libltdl/libltdl_la-lt__alloc.lo
  CC       libltdl/libltdl_la-lt_dlloader.lo
  CC       libltdl/libltdl_la-lt_error.lo
  CC       libltdl/libltdl_la-ltdl.lo
  CC       libltdl/libltdl_la-slist.lo
  CCLD     libltdl/dlopen.la
  CCLD     libltdl/libltdl.la
make[2]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release'
Making all in gnulib-tests
make[2]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
## ---------------------------------------------------- ##
## ------------------- Gnulib tests ------------------- ##
## You can ignore compiler warnings in this directory.  ##
## ---------------------------------------------------- ##
make  all-recursive
make[3]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
Making all in .
make[4]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
make[3]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
make[2]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
make[1]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release'
libtool/2.4.7: Package '95c41cb7f936c5a41857e3d6e5280cd843885679' built
libtool/2.4.7: Build folder /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release
libtool/2.4.7: Generated conaninfo.txt
libtool/2.4.7: Generated conanbuildinfo.txt
libtool/2.4.7: Generating the package
libtool/2.4.7: Package folder /root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679
libtool/2.4.7: Calling package()
libtool/2.4.7: Copied 1 file: COPYING
make  install-recursive
make[1]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release'
Making install in .
make[2]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release'
make[3]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release'
 /usr/bin/mkdir -p '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//bin'
 /usr/bin/install -c libtool '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//bin'
 /usr/bin/mkdir -p '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//include'
 /usr/bin/mkdir -p '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//include/libltdl'
 /usr/bin/mkdir -p '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/man/man1'
 GREP='/usr/bin/grep' SED='/usr/bin/sed' '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/build-aux/inline-source' libtoolize > '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//bin/libtoolize'
 /usr/bin/mkdir -p '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/info'
 /usr/bin/install -c -m 644 /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/ltdl.h '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//include'
 /usr/bin/install -c -m 644 /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt_system.h /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt_error.h /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt_dlloader.h '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//include/libltdl'
 /usr/bin/install -c -m 644 /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/doc/libtool.1 /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/doc/libtoolize.1 '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/man/man1'
 /usr/bin/mkdir -p '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//lib'
 /bin/bash ./libtool   --mode=install /usr/bin/install -c   libltdl/libltdl.la '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//lib'
 /usr/bin/install -c -m 644 /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/doc/libtool.info /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/doc/libtool.info-1 /root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/doc/libtool.info-2 '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/info'
libtool: install: /usr/bin/install -c libltdl/.libs/libltdl.so.7.3.2 /root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//lib/libltdl.so.7.3.2
libtool: install: (cd /root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//lib && { ln -s -f libltdl.so.7.3.2 libltdl.so.7 || { rm -f libltdl.so.7 && ln -s libltdl.so.7.3.2 libltdl.so.7; }; })
libtool: install: (cd /root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//lib && { ln -s -f libltdl.so.7.3.2 libltdl.so || { rm -f libltdl.so && ln -s libltdl.so.7.3.2 libltdl.so; }; })
libtool: install: /usr/bin/install -c libltdl/.libs/libltdl.lai /root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//lib/libltdl.la
libtool: install: /usr/bin/install -c libltdl/.libs/libltdl.a /root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//lib/libltdl.a
libtool: install: chmod 644 /root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//lib/libltdl.a
libtool: install: ranlib /root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//lib/libltdl.a
rm -rf '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool'/*
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/m4/libtool.m4' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/aclocal/libtool.m4'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/m4/ltargz.m4' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/aclocal/ltargz.m4'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/m4/ltdl.m4' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/aclocal/ltdl.m4'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/m4/ltoptions.m4' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/aclocal/ltoptions.m4'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/m4/ltsugar.m4' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/aclocal/ltsugar.m4'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/m4/ltversion.m4' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/aclocal/ltversion.m4'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/m4/lt~obsolete.m4' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/aclocal/lt~obsolete.m4'
 /usr/bin/install -c '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/build-aux/compile' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/build-aux/compile'
 /usr/bin/install -c '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/build-aux/config.guess' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/build-aux/config.guess'
 /usr/bin/install -c '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/build-aux/config.sub' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/build-aux/config.sub'
 /usr/bin/install -c '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/build-aux/depcomp' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/build-aux/depcomp'
 /usr/bin/install -c '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/build-aux/install-sh' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/build-aux/install-sh'
 /usr/bin/install -c '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/build-aux/missing' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/build-aux/missing'
libtool: warning: remember to run 'libtool --finish //lib'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/build-aux/ltmain.sh' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/build-aux/ltmain.sh'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/COPYING.LIB' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/COPYING.LIB'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/Makefile.am' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/Makefile.am'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/README' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/README'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/configure.ac' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/configure.ac'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/aclocal.m4' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/aclocal.m4'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/Makefile.in' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/Makefile.in'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/config-h.in' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/config-h.in'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/configure' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/configure'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt__alloc.h' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/libltdl/lt__alloc.h'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt__argz_.h' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/libltdl/lt__argz_.h'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt__dirent.h' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/libltdl/lt__dirent.h'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt__glibc.h' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/libltdl/lt__glibc.h'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt__private.h' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/libltdl/lt__private.h'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt__strl.h' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/libltdl/lt__strl.h'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt_dlloader.h' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/libltdl/lt_dlloader.h'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt_error.h' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/libltdl/lt_error.h'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/lt_system.h' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/libltdl/lt_system.h'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/libltdl/slist.h' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/libltdl/slist.h'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/loaders/dld_link.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/loaders/dld_link.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/loaders/dlopen.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/loaders/dlopen.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/loaders/dyld.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/loaders/dyld.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/loaders/load_add_on.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/loaders/load_add_on.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/loaders/loadlibrary.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/loaders/loadlibrary.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/loaders/preopen.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/loaders/preopen.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/loaders/shl_load.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/loaders/shl_load.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/lt__alloc.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/lt__alloc.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/lt__argz.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/lt__argz.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/lt__dirent.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/lt__dirent.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/lt__strl.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/lt__strl.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/lt_dlloader.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/lt_dlloader.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/lt_error.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/lt_error.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/ltdl.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/ltdl.c'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/ltdl.h' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/ltdl.h'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/ltdl.mk' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/ltdl.mk'
 /usr/bin/install -c -m 644 '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/src/libltdl/slist.c' '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/slist.c'
chmod a+x '/root/.conan/data/libtool/2.4.7/_/_/package/95c41cb7f936c5a41857e3d6e5280cd843885679//res/libtool/configure'
make[3]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release'
make[2]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release'
Making install in gnulib-tests
make[2]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
make  install-recursive
make[3]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
Making install in .
make[4]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
make[5]: Entering directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
make[5]: Nothing to be done for 'install-exec-am'.
make[5]: Nothing to be done for 'install-data-am'.
make[5]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
make[4]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
make[3]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
make[2]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release/gnulib-tests'
make[1]: Leaving directory '/root/.conan/data/libtool/2.4.7/_/_/build/95c41cb7f936c5a41857e3d6e5280cd843885679/build-release'
libtool/2.4.7 package(): Packaged 9 files
libtool/2.4.7 package(): Packaged 8 '.m4' files
libtool/2.4.7 package(): Packaged 15 '.c' files
libtool/2.4.7 package(): Packaged 15 '.h' files
libtool/2.4.7 package(): Packaged 1 '.am' file: Makefile.am
libtool/2.4.7 package(): Packaged 2 '.in' files: Makefile.in, config-h.in
libtool/2.4.7 package(): Packaged 1 '.mk' file: ltdl.mk
libtool/2.4.7 package(): Packaged 1 '.LIB' file: COPYING.LIB
libtool/2.4.7 package(): Packaged 1 '.ac' file: configure.ac
libtool/2.4.7 package(): Packaged 1 '.sub' file: config.sub
libtool/2.4.7 package(): Packaged 1 '.sh' file: ltmain.sh
libtool/2.4.7 package(): Packaged 1 '.guess' file: config.guess
libtool/2.4.7 package(): Packaged 1 '.a' file: libltdl.a
libtool/2.4.7: Package '95c41cb7f936c5a41857e3d6e5280cd843885679' created
libtool/2.4.7: Created package revision 91aad01d4e10c8f3c4e09a1ccb2fa389
libtool/2.4.7: Applying build-requirement: gnu-config/cci.20210814
libtool/2.4.7: Applying build-requirement: automake/1.16.5
libtool/2.4.7: Applying build-requirement: gnu-config/cci.20210814
libtool/2.4.7: Applying build-requirement: autoconf/2.71
libtool/2.4.7: Applying build-requirement: m4/1.4.19
xkbcommon/1.5.0: Applying build-requirement: meson/1.3.2
xkbcommon/1.5.0: Applying build-requirement: bison/3.8.2
xkbcommon/1.5.0: Applying build-requirement: pkgconf/2.1.0
xkbcommon/1.5.0: Applying build-requirement: wayland-protocols/1.33
xkbcommon/1.5.0: Applying build-requirement: ninja/1.12.1
xkbcommon/1.5.0: Applying build-requirement: m4/1.4.19
xkbcommon/1.5.0: Configuring sources in /root/.conan/data/xkbcommon/1.5.0/_/_/source/src
Downloading libxkbcommon-1.5.0.tar.xz completed [461.62k]                                xkbcommon/1.5.0: xkbcommon/1.5.0:
xkbcommon/1.5.0:
xkbcommon/1.5.0: Copying sources to build folder
xkbcommon/1.5.0: Building your package in /root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e
xkbcommon/1.5.0: Generator txt created conanbuildinfo.txt
xkbcommon/1.5.0: Calling generate()
xkbcommon/1.5.0: Aggregating env generators
xkbcommon/1.5.0: Calling build()
xkbcommon/1.5.0: Meson configure cmd: meson setup --native-file "/root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/build-release/conan/conan_meson_native.ini" "/root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/build-release" "/root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/src" --prefix=/
DEPRECATION: "pkgconfig" entry is deprecated and should be replaced by "pkg-config"
The Meson build system
Version: 1.3.2
Source dir: /root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/src
Build dir: /root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/build-release
Build type: native build
Project name: libxkbcommon
Project version: 1.5.0
C compiler for the host machine: /usr/local/bin/gcc (gcc 13.2.0 "gcc (GCC) 13.2.0")
C linker for the host machine: /usr/local/bin/gcc ld.bfd 2.40
Host machine cpu family: x86_64
Host machine cpu: x86_64
Compiler for C supports arguments -fno-strict-aliasing: YES
Compiler for C supports arguments -Wno-unused-parameter: YES
Compiler for C supports arguments -Wno-missing-field-initializers: YES
Compiler for C supports arguments -Wpointer-arith: YES
Compiler for C supports arguments -Wmissing-declarations: YES
Compiler for C supports arguments -Wformat=2: YES
Compiler for C supports arguments -Wstrict-prototypes: YES
Compiler for C supports arguments -Wmissing-prototypes: YES
Compiler for C supports arguments -Wnested-externs: YES
Compiler for C supports arguments -Wbad-function-cast: YES
Compiler for C supports arguments -Wshadow: YES
Compiler for C supports arguments -Wlogical-op: YES
Compiler for C supports arguments -Wdate-time: YES
Compiler for C supports arguments -Wwrite-strings: YES
Compiler for C supports arguments -Wno-documentation-deprecated-sync: NO
Found pkg-config: YES (/root/.conan/data/pkgconf/2.1.0/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/pkgconf) 2.1.0
Run-time dependency xkeyboard-config found: YES 2.35.1
Has header "unistd.h" : YES
Checking if "__builtin_expect" : links: YES
Header "unistd.h" has symbol "eaccess" : YES
Header "unistd.h" has symbol "euidaccess" : YES
Header "sys/mman.h" has symbol "mmap" : YES
Header "stdlib.h" has symbol "mkostemp" : YES
Header "fcntl.h" has symbol "posix_fallocate" : YES
Header "string.h" has symbol "strndup" : YES
Header "stdio.h" has symbol "asprintf" : YES
Header "stdlib.h" has symbol "secure_getenv" : YES
Header "limits.h" has symbol "PATH_MAX" : YES
Checking if "-Wl,--version-script" : links: YES
Program scripts/map-to-def found: YES (/root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/src/scripts/map-to-def)
Program bison found: YES (/root/.conan/data/bison/3.8.2/_/_/package/fc68a6d5baa446325756edf730ba0ec59c093233/bin/bison)
Run-time dependency xcb found: YES 1.15
Run-time dependency xcb-xkb found: YES 1.15
Run-time dependency libxml-2.0 found: YES 2.13.4
Header "getopt.h" has symbol "getopt_long" : YES
Has header "linux/input.h" : YES
Found CMake: /usr/local/bin/cmake (3.30.0)
Run-time dependency wayland-client found: NO (tried pkgconfig and cmake)
Run-time dependency wayland-protocols found: YES 1.33
Build-time dependency wayland-scanner_build found: YES 1.22.0

../src/meson.build:481:12: ERROR: Problem encountered: The Wayland xkbcli programs require wayland-client >= 1.2.0, wayland-protocols >= 1.7 which were not found.
You can disable the Wayland xkbcli programs with -Denable-wayland=false.

A full log can be found at /root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/build-release/meson-logs/meson-log.txt
xkbcommon/1.5.0:
xkbcommon/1.5.0: ERROR: Package '388682eb26854b982ba7f8ad1472ca0effad138e' build failed
xkbcommon/1.5.0: WARN: Build folder /root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/build-release
ERROR: xkbcommon/1.5.0: Error in build() method, line 144
        meson.configure()
        ConanException: Error 1 while executing meson setup --native-file "/root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/build-release/conan/conan_meson_native.ini" "/root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/build-release" "/root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/src" --prefix=/
@Drllap Drllap added the bug Something isn't working label Dec 6, 2024
@Drllap
Copy link
Contributor Author

Drllap commented Dec 6, 2024

Appears to be the same thing as this: #20542

@Drllap
Copy link
Contributor Author

Drllap commented Dec 6, 2024

If I manually query for wayland-client:

pkgconf wayland-client -libs
-lwayland-client

@Drllap
Copy link
Contributor Author

Drllap commented Dec 7, 2024

Since it was requested in #20542, here is the meson log:
meson-log.txt

@Drllap
Copy link
Contributor Author

Drllap commented Dec 7, 2024

So looking at the meson log above, there is this:

env[PKG_CONFIG]: /root/.conan/data/pkgconf/2.1.0/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/pkgconf
env[PKG_CONFIG_PATH]: /root/.conan/data/xkbcommon/1.5.0/_/_/build/388682eb26854b982ba7f8ad1472ca0effad138e/build-release/conan

and indeed, if I run /root/.conan/data/pkgconf/2.1.0/_/_/package/24647d9fe8ec489125dfbae4b3ebefaf7581674c/bin/pkgconf wayland-client -libs I get :

Package wayland-client was not found in the pkg-config search path.
Perhaps you should add the directory containing `wayland-client.pc'
to the PKG_CONFIG_PATH environment variable
Package 'wayland-client', required by 'virtual:world', not found

so for whatever reason it doesn't find the installed wayland-client

@SpaceIm
Copy link
Contributor

SpaceIm commented Dec 12, 2024

Assuming it's the same issue as the one described in #20542, it has been fixed in conan v2 client, but it can't be fixed in conan v1 client (see conan-io/conan#14920 (comment)).
Anyway it's a conan client issue, not a recipe issue.

@Drllap
Copy link
Contributor Author

Drllap commented Dec 12, 2024

@SpaceIm We aren't quite ready to move to v2 quite yet. Is there any workaround?

@SpaceIm
Copy link
Contributor

SpaceIm commented Dec 12, 2024

Yep, build your wayland-client package (the one that should be generated in build context) with a a separate conan install command.

@Drllap
Copy link
Contributor Author

Drllap commented Dec 12, 2024

Worked like a charm, thank you

@Drllap Drllap closed this as completed Dec 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants