conan-io / conan

Conan - The open-source C and C++ package manager
https://conan.io
MIT License
8.21k stars 979 forks source link

[question] Protobuf build module for `protoc` compiler not generated and cannot be consumed by grpc. #16656

Closed germandiagogomez closed 2 months ago

germandiagogomez commented 3 months ago

What is your question?

Hello Dear Conan community,

Glad to see you around.

I am trying to integrate grpc as a dependency in my project but grpc seems to not find the protoc compiler.

This is the error:

-- Conan: Including build module from '/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-generate.cmake'
-- Conan: Including build module from '/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-module.cmake'
-- Conan: Including build module from '/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-options.cmake'
-- Conan: Including build module from '/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-conan-protoc-target.cmake'
CMake Error at /Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/build/Release/generators/protobuf-config.cmake:37 (include):
  include could not find requested file:

    /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-conan-protoc-target.cmake
Call Stack (most recent call first):
  cmake/protobuf.cmake:58 (find_package)
  CMakeLists.txt:325 (include)

I tried to upgrade protobuf dependency to see if things would get fixed.

What caught my eye is the following. In the recipe for protobuf there is something like this (please pay attention to file protobuf-conan-protoc-target.cmake, which seems to be the root of the problem):

def export_sources(self):
        export_conandata_patches(self)
        copy(self, "protobuf-conan-protoc-target.cmake", self.recipe_folder, os.path.join(self.export_sources_folder, "src"))

And this:

def package_info(self):
       #... Other code 
       build_modules = [
            os.path.join(self._cmake_install_base_path, "protobuf-generate.cmake"),
            os.path.join(self._cmake_install_base_path, "protobuf-module.cmake"),
            os.path.join(self._cmake_install_base_path, "protobuf-options.cmake"),
            os.path.join(self._cmake_install_base_path, "protobuf-conan-protoc-target.cmake"),
        ]
        self.cpp_info.set_property("cmake_build_modules", build_modules)

But I when I added this check to export_sources:

def export_sources(self):
        export_conandata_patches(self)
        copy(
            self,
            "protobuf-conan-protoc-target.cmake",
            self.recipe_folder,
            os.path.join(self.export_sources_folder, "src"),
        )
        from pathlib import Path

        p = Path(self.recipe_folder + "/probuf-conan-protoc-target.cmake")
        raise RuntimeError(f"{p.exists()}")

The RuntimeError string is "False". Namely, protobuf-conan-protoc-target.cmake seems to be missing and not included in the protobuf package. This prevents grpc from finding protoc compiler as far as my understanding goes.

My command line to compile:

conan create --build=grpc/1.54.3 --profile:host=profiles/clang15_libcxx -s build_type=Release -s:b build_type=Release -pr:b=profiles/clang15_libcxx recipes/grpc grpc/1.54.3@

My profile:

[settings]
os=Macos
os_build=Macos
arch=x86_64
arch_build=x86_64
compiler=clang
compiler.version=15
compiler.libcxx=libc++
compiler.cppstd=20
[options]
[conf]
[build_requires]
[env]
CC=clang
CXX=clang++

[conf]
tools.gnu:pkg_config=pkg-config

Conan version used is 1.64.1.

Have you read the CONTRIBUTING guide?

memsharded commented 3 months ago

Hi @germandiagogomez

Some quick hint first:

Then, I am trying to reproduce your issue. If I go to the protobuf/all recipe in conan-center-index repo and I do:

 conan export . 5.27.0@
...
protobuf/5.27.0: Copied 1 '.cmake' file: protobuf-conan-protoc-target.cmake

The file is correctly exported

I have also added in the method:

    def export_sources(self):
        export_conandata_patches(self)
        copy(self, "protobuf-conan-protoc-target.cmake", self.recipe_folder, os.path.join(self.export_sources_folder, "src"))
        assert os.path.exists(os.path.join(self.recipe_folder, "protobuf-conan-protoc-target.cmake"))

And I can do the export without issues.

memsharded commented 3 months ago

Ok, just realized. You have a mispelled: "probuf-conan-protoc-target.cmake"

It is "protobuf", not "probuf"

germandiagogomez commented 3 months ago

@memsharded that was some typo when putting it here. The file does not exist for me with the assert provided and the only exported file is conandata.yml on export. Also, I have no patches directory or the like in my recipe (which I downloaded from conancenter.

I am just generating some recipes now to upload into an Artifactory instance without relying on a conanfile.txt or conanfile.py so I do not have a generators section available.

memsharded commented 3 months ago

@memsharded that was some typo when putting it here. The file does not exist for me with the assert provided and the only exported file is conandata.yml on export. Also, I have no patches directory or the like in my recipe (which I downloaded from conancenter.

If you download just the conanfile.py from ConanCenter, surely the protobuf....cmake file will not be there. The conan export or conan create must be done from the conan-center-index github repo clone, not from the download of the recipe.

If you did download the .cmake file, then there might be something else somewhere. If you can please post a small reproducible example (including the conanfile, the .cmake file, the exact command you are using and the full output of that command, including specially the first line which include the summary of exported files), that would help to understand what is failing in your case.

I am just generating some recipes now to upload into an Artifactory instance without relying on a conanfile.txt or conanfile.py so I do not have a generators section available.

Yes, you can conan install <ref> -g gen1 -g gen2 -g gen3... with as many generators as you want.

germandiagogomez commented 3 months ago

If you download just the conanfile.py from ConanCenter, surely the protobuf....cmake file will not be there. The conan export or conan create must be done from the conan-center-index github repo clone, not from the download of the recipe.

There might be a misconception on my side here on how my workflow should be. I have been doing (for a long time!) and without problems:

  1. download the recipe only from conancenter.
  2. adjust and modify.
  3. push recipe to Artifactory.
  4. Use my remote.

I saw that when downloading from conancenter I always got the patches/ directory in ~/.conan/data/..../export_source/. So I copied whatever export/ and export_source/ directories had and removed the conanmanifest.txt file. Things seemed to work smooth. I have a directory conan/recipes/libraryname/ for each of my dependencies with conandata.yml patches, etc. just by using conancenter and copying from the cache the recipe, etc. Not sure I am doing something wrong:

   1. I should work with `conan-center-index` directly? 
   2. Then, what is the point of having a remote that seems to have (again, correct me if I am wrong, pretty sure I am) incomplete directory structure, when the point of the recipe is being able to use `conan create/install/export` etc. directly (I guess)?

Provided that I did not do something wrong, as per my previous comments:

If you did download the .cmake file, then there might be something else somewhere.

Not sure I follow. I would expect a recipe to be self-contained (except for dependencies, of course)

If you can please post a small reproducible example (including the conanfile, the .cmake file, the exact command you are using and the full output of that command, including specially the first line which include the summary of exported files), that would help to understand what is failing in your case.

For protobuf the command line is:

conan create --build=protobuf/5.27.0 --profile:host=profiles/clang15_libcxx -s build_type=Release -s:b build_type=Release -pr:b=profiles/clang15_libcxx recipes/protobuf protobuf/5.27.0@

The output for protobuf is:

Downloading conanmanifest.txt
Downloading conanfile.py
Downloading conan_export.tgz
Exporting package recipe
protobuf/5.27.0 exports: File 'conandata.yml' found. Exporting it...
protobuf/5.27.0 exports: Copied 1 '.yml' file: conandata.yml
protobuf/5.27.0: Calling export_sources()
protobuf/5.27.0: export_conandata_patches(): No patches defined in conandata
protobuf/5.27.0: The stored package has not changed
protobuf/5.27.0: Using the exported files summary hash as the recipe revision: fab2855d9b1bca8867fd5d54fa9152ee 
protobuf/5.27.0: Exported revision: fab2855d9b1bca8867fd5d54fa9152ee
Configuration (profile_host):
[settings]
arch=x86_64
arch_build=x86_64
build_type=Release
compiler=clang
compiler.cppstd=20
compiler.libcxx=libc++
compiler.version=15
os=Macos
os_build=Macos
[options]
[build_requires]
[env]
[conf]
tools.gnu:pkg_config=pkg-config
[buildenv]
CC=clang
CXX=clang++

Configuration (profile_build):
[settings]
arch=x86_64
arch_build=x86_64
build_type=Release
compiler=clang
compiler.cppstd=20
compiler.libcxx=libc++
compiler.version=15
os=Macos
os_build=Macos
[options]
[build_requires]
[env]
[conf]
tools.gnu:pkg_config=pkg-config
[buildenv]
CC=clang
CXX=clang++

zlib/1.2.13: Not found in local cache, looking in remotes...
zlib/1.2.13: Trying with 'myremote'...
Downloading conanmanifest.txt
Downloading conanfile.py
Downloading conan_export.tgz
zlib/1.2.13: Downloaded recipe revision 36fc749a549308819e98f1443a538d2c
abseil/20240116.2: Not found in local cache, looking in remotes...
abseil/20240116.2: Trying with 'myremote'...
Downloading conanmanifest.txt
Downloading conanfile.py
Downloading conan_export.tgz
abseil/20240116.2: Downloaded recipe revision 996c9b7c09f1f561bdf2e2f3c889a8cb
protobuf/5.27.0: Forced build from source
Version ranges solved
    zlib/* versions found in 'myremote' remote
    Version range '>=1.2.11 <2' required by 'protobuf/5.27.0' resolved to 'zlib/1.2.13' in remote 'myremote'

Installing package: protobuf/5.27.0
Requirements
    abseil/20240116.2 from 'myremote' - Downloaded
    protobuf/5.27.0 from 'myremote' - Cache
    zlib/1.2.13 from 'myremote' - Downloaded
Packages
    abseil/20240116.2:117197ae0cd56232191fb60abd303a8cd4b5bea2 - Download
    protobuf/5.27.0:1418c555ed67198c4f10c64c60de393a878294d3 - Build
    zlib/1.2.13:71e6d10b8c2f951d76287e981168f9081b89e992 - Download

Installing (downloading, building) binaries...
abseil/20240116.2: Retrieving package 117197ae0cd56232191fb60abd303a8cd4b5bea2 from remote 'myremote'
Downloading conanmanifest.txt
Downloading conaninfo.txt
Downloading conan_package.tgz
abseil/20240116.2: Package installed 117197ae0cd56232191fb60abd303a8cd4b5bea2
abseil/20240116.2: Downloaded package revision 1e959227855f399c78a546f4a2ef2d48
zlib/1.2.13: Retrieving package 71e6d10b8c2f951d76287e981168f9081b89e992 from remote 'myremote'
Downloading conanmanifest.txt
Downloading conaninfo.txt
Downloading conan_package.tgz
zlib/1.2.13: Package installed 71e6d10b8c2f951d76287e981168f9081b89e992
zlib/1.2.13: Downloaded package revision 2c72dbef13a41c9dcf2f7df7893b1b3f
protobuf/5.27.0: Configuring sources in /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/source/src
protobuf/5.27.0: 
protobuf/5.27.0: Copying sources to build folder
protobuf/5.27.0: Building your package in /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/build/1418c555ed67198c4f10c64c60de393a878294d3
protobuf/5.27.0: Generator txt created conanbuildinfo.txt
protobuf/5.27.0: Calling generate()
protobuf/5.27.0: Preset 'release' added to CMakePresets.json. Invoke it manually using 'cmake --preset release'
protobuf/5.27.0: If your CMake version is not compatible with CMakePresets (<3.19) call cmake like: 'cmake <path> -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/build/1418c555ed67198c4f10c64c60de393a878294d3/build/Release/generators/conan_toolchain.cmake -DCMAKE_INSTALL_CMAKEDIR=lib/cmake/protobuf -Dprotobuf_WITH_ZLIB=ON -Dprotobuf_BUILD_TESTS=OFF -Dprotobuf_BUILD_PROTOC_BINARIES=ON -Dprotobuf_BUILD_LIBPROTOC=ON -Dprotobuf_DISABLE_RTTI=OFF -Dprotobuf_BUILD_LIBUPB=OFF -Dprotobuf_ABSL_PROVIDER=package -DCMAKE_POLICY_DEFAULT_CMP0091=NEW -DCMAKE_BUILD_TYPE=Release'
protobuf/5.27.0: Aggregating env generators
protobuf/5.27.0: Calling build()
protobuf/5.27.0: apply_conandata_patches(): No patches defined in conandata
protobuf/5.27.0: CMake command: cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/build/1418c555ed67198c4f10c64c60de393a878294d3/build/Release/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3" -DCMAKE_INSTALL_CMAKEDIR="lib/cmake/protobuf" -Dprotobuf_WITH_ZLIB="ON" -Dprotobuf_BUILD_TESTS="OFF" -Dprotobuf_BUILD_PROTOC_BINARIES="ON" -Dprotobuf_BUILD_LIBPROTOC="ON" -Dprotobuf_DISABLE_RTTI="OFF" -Dprotobuf_BUILD_LIBUPB="OFF" -Dprotobuf_ABSL_PROVIDER="package" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="Release" "/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/build/1418c555ed67198c4f10c64c60de393a878294d3/src"
-- Using Conan toolchain: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/build/1418c555ed67198c4f10c64c60de393a878294d3/build/Release/generators/conan_toolchain.cmake
-- Conan toolchain: Setting CMAKE_POSITION_INDEPENDENT_CODE=ON (options.fPIC)
-- Conan toolchain: C++ Standard 20 with extensions OFF
-- Conan toolchain: Setting BUILD_SHARED_LIBS = OFF
-- The C compiler identification is AppleClang 15.0.0.15000309
-- The CXX compiler identification is AppleClang 15.0.0.15000309
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - 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: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- 
-- 27.0.0
-- Performing Test protobuf_HAVE_LD_VERSION_SCRIPT
-- Performing Test protobuf_HAVE_LD_VERSION_SCRIPT - Failed
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE  
-- Conan: Target declared 'ZLIB::ZLIB'
-- Performing Test protobuf_HAVE_BUILTIN_ATOMICS
-- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success
-- Conan: Component target declared 'absl::config'
-- Conan: Component target declared 'absl::dynamic_annotations'
-- Conan: Component target declared 'absl::core_headers'
-- Conan: Component target declared 'absl::pretty_function'
-- Conan: Component target declared 'absl::fast_type_id'
-- Conan: Component target declared 'absl::prefetch'
-- Conan: Component target declared 'absl::algorithm'
-- Conan: Component target declared 'absl::hashtable_debug_hooks'
-- Conan: Component target declared 'absl::node_slot_policy'
-- Conan: Component target declared 'absl::non_temporal_arm_intrinsics'
-- Conan: Component target declared 'absl::non_temporal_memcpy'
-- Conan: Component target declared 'absl::leak_check'
-- Conan: Component target declared 'absl::flags_commandlineflag_internal'
-- Conan: Component target declared 'absl::log_internal_config'
-- Conan: Component target declared 'absl::log_internal_nullguard'
-- Conan: Component target declared 'absl::log_internal_voidify'
-- Conan: Component target declared 'absl::type_traits'
-- Conan: Component target declared 'absl::meta'
-- Conan: Component target declared 'absl::bits'
-- Conan: Component target declared 'absl::int128'
-- Conan: Component target declared 'absl::numeric'
-- Conan: Component target declared 'absl::numeric_representation'
-- Conan: Component target declared 'absl::exponential_biased'
-- Conan: Component target declared 'absl::periodic_sampler'
-- Conan: Component target declared 'absl::random_seed_gen_exception'
-- Conan: Component target declared 'absl::random_internal_traits'
-- Conan: Component target declared 'absl::random_internal_fast_uniform_bits'
-- Conan: Component target declared 'absl::random_internal_iostream_state_saver'
-- Conan: Component target declared 'absl::random_internal_wide_multiply'
-- Conan: Component target declared 'absl::random_internal_fastmath'
-- Conan: Component target declared 'absl::random_internal_pcg_engine'
-- Conan: Component target declared 'absl::random_internal_platform'
-- Conan: Component target declared 'absl::random_internal_randen_slow'
-- Conan: Component target declared 'absl::random_internal_randen_hwaes_impl'
-- Conan: Component target declared 'absl::random_internal_uniform_helper'
-- Conan: Component target declared 'absl::has_ostream_operator'
-- Conan: Component target declared 'absl::cordz_update_tracker'
-- Conan: Component target declared 'absl::civil_time'
-- Conan: Component target declared 'absl::time_zone'
-- Conan: Component target declared 'absl::compare'
-- Conan: Component target declared 'absl::if_constexpr'
-- Conan: Component target declared 'absl::atomic_hook'
-- Conan: Component target declared 'absl::errno_saver'
-- Conan: Component target declared 'absl::log_severity'
-- Conan: Component target declared 'absl::no_destructor'
-- Conan: Component target declared 'absl::nullability'
-- Conan: Component target declared 'absl::raw_logging_internal'
-- Conan: Component target declared 'absl::base_internal'
-- Conan: Component target declared 'absl::throw_delegate'
-- Conan: Component target declared 'absl::scoped_set_env'
-- Conan: Component target declared 'absl::strerror'
-- Conan: Component target declared 'absl::algorithm_container'
-- Conan: Component target declared 'absl::common_policy_traits'
-- Conan: Component target declared 'absl::hashtable_debug'
-- Conan: Component target declared 'absl::container_common'
-- Conan: Component target declared 'absl::debugging_internal'
-- Conan: Component target declared 'absl::overload'
-- Conan: Component target declared 'absl::memory'
-- Conan: Component target declared 'absl::random_internal_generate_real'
-- Conan: Component target declared 'absl::random_internal_randen_hwaes'
-- Conan: Component target declared 'absl::cordz_functions'
-- Conan: Component target declared 'absl::bad_any_cast_impl'
-- Conan: Component target declared 'absl::span'
-- Conan: Component target declared 'absl::bad_optional_access'
-- Conan: Component target declared 'absl::bad_variant_access'
-- Conan: Component target declared 'absl::utility'
-- Conan: Component target declared 'absl::spinlock_wait'
-- Conan: Component target declared 'absl::base'
-- Conan: Component target declared 'absl::endian'
-- Conan: Component target declared 'absl::cleanup_internal'
-- Conan: Component target declared 'absl::cleanup'
-- Conan: Component target declared 'absl::compressed_tuple'
-- Conan: Component target declared 'absl::fixed_array'
-- Conan: Component target declared 'absl::inlined_vector_internal'
-- Conan: Component target declared 'absl::inlined_vector'
-- Conan: Component target declared 'absl::container_memory'
-- Conan: Component target declared 'absl::hash_policy_traits'
-- Conan: Component target declared 'absl::crc_cpu_detect'
-- Conan: Component target declared 'absl::crc_internal'
-- Conan: Component target declared 'absl::stacktrace'
-- Conan: Component target declared 'absl::demangle_internal'
-- Conan: Component target declared 'absl::debugging'
-- Conan: Component target declared 'absl::any_invocable'
-- Conan: Component target declared 'absl::bind_front'
-- Conan: Component target declared 'absl::function_ref'
-- Conan: Component target declared 'absl::city'
-- Conan: Component target declared 'absl::low_level_hash'
-- Conan: Component target declared 'absl::log_internal_conditions'
-- Conan: Component target declared 'absl::random_internal_distribution_caller'
-- Conan: Component target declared 'absl::random_internal_randen'
-- Conan: Component target declared 'absl::string_view'
-- Conan: Component target declared 'absl::charset'
-- Conan: Component target declared 'absl::strings_internal'
-- Conan: Component target declared 'absl::bad_any_cast'
-- Conan: Component target declared 'absl::optional'
-- Conan: Component target declared 'absl::variant'
-- Conan: Component target declared 'absl::malloc_internal'
-- Conan: Component target declared 'absl::random_bit_gen_ref'
-- Conan: Component target declared 'absl::random_internal_mock_helpers'
-- Conan: Component target declared 'absl::random_internal_randen_engine'
-- Conan: Component target declared 'absl::strings'
-- Conan: Component target declared 'absl::str_format_internal'
-- Conan: Component target declared 'absl::graphcycles_internal'
-- Conan: Component target declared 'absl::time'
-- Conan: Component target declared 'absl::any'
-- Conan: Component target declared 'absl::layout'
-- Conan: Component target declared 'absl::symbolize'
-- Conan: Component target declared 'absl::examine_stack'
-- Conan: Component target declared 'absl::failure_signal_handler'
-- Conan: Component target declared 'absl::flags_path_util'
-- Conan: Component target declared 'absl::flags_commandlineflag'
-- Conan: Component target declared 'absl::flags_private_handle_accessor'
-- Conan: Component target declared 'absl::hash'
-- Conan: Component target declared 'absl::log_internal_globals'
-- Conan: Component target declared 'absl::log_internal_proto'
-- Conan: Component target declared 'absl::log_internal_nullstream'
-- Conan: Component target declared 'absl::log_internal_append_truncated'
-- Conan: Component target declared 'absl::log_entry'
-- Conan: Component target declared 'absl::log_sink'
-- Conan: Component target declared 'absl::log_internal_fnmatch'
-- Conan: Component target declared 'absl::random_distributions'
-- Conan: Component target declared 'absl::random_internal_seed_material'
-- Conan: Component target declared 'absl::random_internal_pool_urbg'
-- Conan: Component target declared 'absl::random_internal_salted_seed_seq'
-- Conan: Component target declared 'absl::random_internal_nonsecure_base'
-- Conan: Component target declared 'absl::str_format'
-- Conan: Component target declared 'absl::kernel_timeout_internal'
-- Conan: Component target declared 'absl::synchronization'
-- Conan: Component target declared 'absl::crc32c'
-- Conan: Component target declared 'absl::crc_cord_state'
-- Conan: Component target declared 'absl::flags_program_name'
-- Conan: Component target declared 'absl::flags_config'
-- Conan: Component target declared 'absl::flags_marshalling'
-- Conan: Component target declared 'absl::flags_internal'
-- Conan: Component target declared 'absl::log_internal_format'
-- Conan: Component target declared 'absl::vlog_config_internal'
-- Conan: Component target declared 'absl::absl_vlog_is_on'
-- Conan: Component target declared 'absl::vlog_is_on'
-- Conan: Component target declared 'absl::sample_recorder'
-- Conan: Component target declared 'absl::random_seed_sequences'
-- Conan: Component target declared 'absl::random_internal_distribution_test_util'
-- Conan: Component target declared 'absl::cord_internal'
-- Conan: Component target declared 'absl::cordz_statistics'
-- Conan: Component target declared 'absl::cordz_handle'
-- Conan: Component target declared 'absl::cordz_info'
-- Conan: Component target declared 'absl::cordz_sample_token'
-- Conan: Component target declared 'absl::cordz_update_scope'
-- Conan: Component target declared 'absl::cord'
-- Conan: Component target declared 'absl::btree'
-- Conan: Component target declared 'absl::hash_function_defaults'
-- Conan: Component target declared 'absl::hashtablez_sampler'
-- Conan: Component target declared 'absl::raw_hash_set'
-- Conan: Component target declared 'absl::log_globals'
-- Conan: Component target declared 'absl::log_initialize'
-- Conan: Component target declared 'absl::random_random'
-- Conan: Component target declared 'absl::status'
-- Conan: Component target declared 'absl::statusor'
-- Conan: Component target declared 'absl::flat_hash_set'
-- Conan: Component target declared 'absl::node_hash_set'
-- Conan: Component target declared 'absl::raw_hash_map'
-- Conan: Component target declared 'absl::log_internal_log_sink_set'
-- Conan: Component target declared 'absl::log_sink_registry'
-- Conan: Component target declared 'absl::flat_hash_map'
-- Conan: Component target declared 'absl::node_hash_map'
-- Conan: Component target declared 'absl::flags_reflection'
-- Conan: Component target declared 'absl::flags'
-- Conan: Component target declared 'absl::flags_usage_internal'
-- Conan: Component target declared 'absl::flags_usage'
-- Conan: Component target declared 'absl::flags_parse'
-- Conan: Component target declared 'absl::log_internal_flags'
-- Conan: Component target declared 'absl::log_internal_message'
-- Conan: Component target declared 'absl::log_internal_strip'
-- Conan: Component target declared 'absl::log_flags'
-- Conan: Component target declared 'absl::log_internal_structured'
-- Conan: Component target declared 'absl::log_structured'
-- Conan: Component target declared 'absl::log_internal_check_op'
-- Conan: Component target declared 'absl::log_internal_log_impl'
-- Conan: Component target declared 'absl::absl_log'
-- Conan: Component target declared 'absl::log'
-- Conan: Component target declared 'absl::log_streamer'
-- Conan: Component target declared 'absl::log_internal_check_impl'
-- Conan: Component target declared 'absl::absl_check'
-- Conan: Component target declared 'absl::check'
-- Conan: Component target declared 'absl::die_if_null'
-- Conan: Target declared 'abseil::abseil'
-- Conan: Including build module from '/Users/germandiago/.conan/data/abseil/20240116.2/_/_/package/117197ae0cd56232191fb60abd303a8cd4b5bea2/lib/cmake/conan_trick/cxx_std.cmake'
-- Configuring done (2.0s)
-- Generating done (0.1s)
-- Build files have been written to: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/build/1418c555ed67198c4f10c64c60de393a878294d3/build/Release
protobuf/5.27.0: CMake command: cmake --build "/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/build/1418c555ed67198c4f10c64c60de393a878294d3/build/Release" '--' '-j16'
[  1%] Building CXX object third_party/utf8_range/CMakeFiles/utf8_validity.dir/utf8_validity.cc.o
[  1%] Building C object third_party/utf8_range/CMakeFiles/utf8_validity.dir/utf8_range.c.o
[  2%] Building C object third_party/utf8_range/CMakeFiles/utf8_range.dir/utf8_range.c.o
[  2%] Linking C static library libutf8_range.a
[  2%] Built target utf8_range
[  3%] Linking CXX static library libutf8_validity.a
[  3%] Built target utf8_validity
[  4%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/any_lite.cc.o
[  4%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/arena.cc.o
[  5%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/arena_align.cc.o
[  6%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/extension_set.cc.o
[  6%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/arenaz_sampler.cc.o
[  6%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/arenastring.cc.o
[  6%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/generated_enum_util.cc.o
[  7%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/generated_message_tctable_lite.cc.o
[  7%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/generated_message_util.cc.o
[  8%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/implicit_weak_message.cc.o
[  8%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/any.pb.cc.o
[  8%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/inlined_string_field.cc.o
[  8%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/api.pb.cc.o
[  8%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/io/coded_stream.cc.o
[ 10%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/io/io_win32.cc.o
[ 10%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/duration.pb.cc.o
[ 10%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/io/zero_copy_stream.cc.o
[ 10%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/empty.pb.cc.o
[ 11%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/io/zero_copy_stream_impl.cc.o
[ 12%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/field_mask.pb.cc.o
[ 12%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/source_context.pb.cc.o
[ 12%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o
[ 12%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/struct.pb.cc.o
[ 13%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/timestamp.pb.cc.o
[ 14%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/map.cc.o
[ 14%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/message_lite.cc.o
[ 14%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/parse_context.cc.o
[ 15%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/port.cc.o
[ 15%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/type.pb.cc.o
[ 16%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/wrappers.pb.cc.o
[ 16%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/any.cc.o
[ 17%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/any_lite.cc.o
[ 17%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/raw_ptr.cc.o
[ 17%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o
[ 18%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/repeated_field.cc.o
[ 18%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/arena_align.cc.o
[ 18%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/repeated_ptr_field.cc.o
[ 18%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/common.cc.o
[ 19%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/arenastring.cc.o
[ 20%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/wire_format_lite.cc.o
[ 20%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/arenaz_sampler.cc.o
[ 21%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/compiler/importer.cc.o
[ 21%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/compiler/parser.cc.o
[ 22%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/cpp_features.pb.cc.o
[ 22%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/descriptor.cc.o
[ 22%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/descriptor.pb.cc.o
[ 23%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/descriptor_database.cc.o
[ 23%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/dynamic_message.cc.o
[ 24%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/extension_set.cc.o
[ 24%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/extension_set_heavy.cc.o
[ 25%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/feature_resolver.cc.o
[ 25%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/generated_enum_util.cc.o
[ 25%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/generated_message_bases.cc.o
[ 26%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/generated_message_reflection.cc.o
[ 26%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/generated_message_tctable_full.cc.o
[ 27%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/generated_message_tctable_gen.cc.o
[ 27%] Linking CXX static library libprotobuf-lite.a
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libprotobuf-lite.a(io_win32.cc.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libprotobuf-lite.a(io_win32.cc.o) has no symbols
[ 27%] Built target libprotobuf-lite
[ 27%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/generated_message_tctable_lite.cc.o
[ 28%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/generated_message_util.cc.o
[ 28%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/implicit_weak_message.cc.o
[ 28%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/inlined_string_field.cc.o
[ 29%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/coded_stream.cc.o
[ 29%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/gzip_stream.cc.o
[ 30%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/io_win32.cc.o
[ 30%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/printer.cc.o
[ 31%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/strtod.cc.o
[ 31%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/tokenizer.cc.o
[ 31%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/zero_copy_sink.cc.o
[ 32%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/zero_copy_stream.cc.o
[ 32%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/zero_copy_stream_impl.cc.o
[ 33%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o
[ 33%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/json/internal/lexer.cc.o
[ 34%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/json/internal/message_path.cc.o
[ 34%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/json/internal/parser.cc.o
[ 34%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/json/internal/unparser.cc.o
[ 35%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/json/internal/untyped_message.cc.o
[ 35%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/json/internal/writer.cc.o
[ 36%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/json/internal/zero_copy_buffered_stream.cc.o
[ 36%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/json/json.cc.o
[ 36%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/map.cc.o
[ 37%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/map_field.cc.o
[ 37%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/message.cc.o
[ 38%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/message_lite.cc.o
[ 38%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/parse_context.cc.o
[ 39%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/port.cc.o
[ 39%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/raw_ptr.cc.o
[ 39%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/reflection_mode.cc.o
[ 40%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/reflection_ops.cc.o
[ 40%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/repeated_field.cc.o
[ 41%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/repeated_ptr_field.cc.o
[ 41%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/service.cc.o
[ 42%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/common.cc.o
[ 42%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/text_format.cc.o
[ 42%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/unknown_field_set.cc.o
[ 43%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/delimited_message_util.cc.o
[ 43%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/field_comparator.cc.o
[ 44%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/field_mask_util.cc.o
[ 44%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/message_differencer.cc.o
[ 45%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/time_util.cc.o
[ 45%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/type_resolver_util.cc.o
[ 45%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/wire_format.cc.o
[ 46%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/wire_format_lite.cc.o
[ 46%] Linking CXX static library libprotobuf.a
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libprotobuf.a(io_win32.cc.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libprotobuf.a(io_win32.cc.o) has no symbols
[ 46%] Built target libprotobuf
[ 46%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/extension.cc.o
[ 48%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/code_generator.cc.o
[ 48%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/field_generators/cord_field.cc.o
[ 49%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/command_line_interface.cc.o
[ 49%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/enum.cc.o
[ 49%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/field.cc.o
[ 50%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/field_generators/message_field.cc.o
[ 50%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/field_generators/enum_field.cc.o
[ 50%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/field_generators/map_field.cc.o
[ 51%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/field_generators/primitive_field.cc.o
[ 51%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/field_generators/string_field.cc.o
[ 51%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/field_generators/string_view_field.cc.o
[ 52%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/file.cc.o
[ 52%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/generator.cc.o
[ 53%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/ifndef_guard.cc.o
[ 53%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/helpers.cc.o
[ 54%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/message.cc.o
[ 54%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/namespace_printer.cc.o
[ 54%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/padding_optimizer.cc.o
[ 55%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/parse_function_generator.cc.o
[ 55%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/service.cc.o
[ 56%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/tracker.cc.o
[ 56%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o
[ 57%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_enum.cc.o
[ 57%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o
[ 57%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o
[ 58%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_generator.cc.o
[ 58%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o
[ 59%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o
[ 59%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_message.cc.o
[ 60%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o
[ 60%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o
[ 60%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o
[ 61%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o
[ 61%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o
[ 62%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o
[ 62%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o
[ 63%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o
[ 63%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/names.cc.o
[ 63%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/context.cc.o
[ 64%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/doc_comment.cc.o
[ 64%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/field_common.cc.o
[ 65%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/file.cc.o
[ 65%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/enum.cc.o
[ 65%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/enum_field.cc.o
[ 66%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/extension.cc.o
[ 66%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/generator_factory.cc.o
[ 67%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/make_field_gens.cc.o
[ 67%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/map_field.cc.o
[ 68%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/message.cc.o
[ 68%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/message_builder.cc.o
[ 68%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/message_field.cc.o
[ 69%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/primitive_field.cc.o
[ 69%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/service.cc.o
[ 70%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/full/string_field.cc.o
[ 70%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/generator.cc.o
[ 71%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/helpers.cc.o
[ 71%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/internal_helpers.cc.o
[ 71%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_features.pb.cc.o
[ 72%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/kotlin_generator.cc.o
[ 72%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/lite/enum.cc.o
[ 73%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/lite/enum_field.cc.o
[ 73%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/lite/extension.cc.o
[ 74%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/lite/generator_factory.cc.o
[ 74%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/lite/make_field_gens.cc.o
[ 74%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/lite/map_field.cc.o
[ 75%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/lite/message.cc.o
[ 75%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/lite/message_builder.cc.o
[ 76%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/lite/message_field.cc.o
[ 76%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/lite/primitive_field.cc.o
[ 77%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/lite/string_field.cc.o
[ 77%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/message_serialization.cc.o
[ 77%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/name_resolver.cc.o
[ 78%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/names.cc.o
[ 78%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/shared_code_generator.cc.o
[ 79%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/enum.cc.o
[ 79%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/enum_field.cc.o
[ 80%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/extension.cc.o
[ 80%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/field.cc.o
[ 80%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/file.cc.o
[ 81%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/generator.cc.o
[ 81%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/helpers.cc.o
[ 82%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/import_writer.cc.o
[ 82%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/line_consumer.cc.o
[ 83%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/map_field.cc.o
[ 83%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/message.cc.o
[ 83%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/message_field.cc.o
[ 84%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/names.cc.o
[ 84%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/oneof.cc.o
[ 85%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/primitive_field.cc.o
[ 85%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/tf_decode_data.cc.o
[ 85%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/php/names.cc.o
[ 86%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/php/php_generator.cc.o
[ 86%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/plugin.cc.o
[ 87%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/plugin.pb.cc.o
[ 87%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/python/generator.cc.o
[ 88%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/python/helpers.cc.o
[ 88%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/python/pyi_generator.cc.o
[ 88%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/retention.cc.o
[ 89%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/ruby/ruby_generator.cc.o
[ 89%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/accessors/accessor_case.cc.o
[ 90%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/accessors/accessors.cc.o
[ 90%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/accessors/helpers.cc.o
[ 91%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/accessors/map.cc.o
[ 91%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/accessors/repeated_field.cc.o
[ 91%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/accessors/singular_message.cc.o
[ 92%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/accessors/singular_scalar.cc.o
[ 92%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/accessors/singular_string.cc.o
[ 93%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/accessors/unsupported_field.cc.o
[ 93%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/context.cc.o
[ 94%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/crate_mapping.cc.o
[ 94%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/enum.cc.o
[ 94%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/generator.cc.o
[ 95%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/message.cc.o
[ 95%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/naming.cc.o
[ 96%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/oneof.cc.o
[ 96%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/relative_path.cc.o
[ 97%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/rust_field_type.cc.o
[ 97%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/rust/rust_keywords.cc.o
[ 97%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/subprocess.cc.o
[ 98%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/versions.cc.o
[ 98%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/zip_writer.cc.o
[ 99%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/testing/file.cc.o
[ 99%] Building CXX object CMakeFiles/libprotoc.dir/upb_generator/mangle.cc.o
[100%] Linking CXX static library libprotoc.a
[100%] Built target libprotoc
[100%] Building CXX object CMakeFiles/protoc.dir/src/google/protobuf/compiler/main.cc.o
[100%] Linking CXX executable protoc
[100%] Built target protoc
protobuf/5.27.0: Package '1418c555ed67198c4f10c64c60de393a878294d3' built
protobuf/5.27.0: Build folder /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/build/1418c555ed67198c4f10c64c60de393a878294d3/build/Release
protobuf/5.27.0: Generated conaninfo.txt
protobuf/5.27.0: Generated conanbuildinfo.txt
protobuf/5.27.0: Generating the package
protobuf/5.27.0: Package folder /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3
protobuf/5.27.0: Calling package()
protobuf/5.27.0: Copied 1 file: LICENSE
protobuf/5.27.0: CMake command: cmake --install "/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/build/1418c555ed67198c4f10c64c60de393a878294d3/build/Release" --prefix "/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3"
-- Install configuration: "Release"
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/utf8_range/utf8_range-targets.cmake
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/utf8_range/utf8_range-targets-release.cmake
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/libutf8_validity.a
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/libutf8_range.a
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/utf8_range/utf8_range-config.cmake
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/pkgconfig/utf8_range.pc
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/utf8_range.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/utf8_validity.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/libprotobuf-lite.a
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/libprotobuf-lite.a(io_win32.cc.o) has no symbols
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/libprotobuf.a
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/libprotobuf.a(io_win32.cc.o) has no symbols
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/libprotoc.a
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/bin/protoc-27.0.0
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/bin/protoc
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/pkgconfig/protobuf.pc
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/pkgconfig/protobuf-lite.pc
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/any.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/api.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/duration.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/empty.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/field_mask.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/source_context.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/struct.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/timestamp.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/type.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/wrappers.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/any.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/arena.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/arena_align.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/arena_allocation_policy.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/arena_cleanup.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/arenastring.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/arenaz_sampler.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/importer.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/parser.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/cpp_edition_defaults.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/cpp_features.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/descriptor.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/descriptor.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/descriptor_database.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/descriptor_legacy.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/descriptor_lite.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/descriptor_visitor.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/dynamic_message.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/endian.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/explicitly_constructed.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/extension_set.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/extension_set_inl.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/feature_resolver.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/field_access_listener.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/generated_enum_reflection.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/generated_enum_util.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/generated_message_bases.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/generated_message_reflection.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/generated_message_tctable_decl.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/generated_message_tctable_gen.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/generated_message_tctable_impl.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/generated_message_util.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/has_bits.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/implicit_weak_message.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/inlined_string_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/internal_visibility.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/io/coded_stream.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/io/gzip_stream.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/io/io_win32.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/io/printer.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/io/strtod.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/io/tokenizer.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/io/zero_copy_sink.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/io/zero_copy_stream.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/io/zero_copy_stream_impl.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/io/zero_copy_stream_impl_lite.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/json/internal/descriptor_traits.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/json/internal/lexer.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/json/internal/message_path.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/json/internal/parser.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/json/internal/parser_traits.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/json/internal/unparser.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/json/internal/unparser_traits.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/json/internal/untyped_message.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/json/internal/writer.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/json/internal/zero_copy_buffered_stream.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/json/json.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/map.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/map_entry.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/map_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/map_field_inl.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/map_field_lite.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/map_type_handler.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/message.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/message_lite.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/metadata.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/metadata_lite.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/parse_context.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/port.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/port_def.inc
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/port_undef.inc
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/raw_ptr.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/reflection.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/reflection_internal.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/reflection_mode.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/reflection_ops.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/reflection_visit_field_info.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/reflection_visit_fields.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/repeated_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/repeated_ptr_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/runtime_version.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/serial_arena.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/service.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/string_block.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/stubs/callback.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/stubs/common.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/stubs/platform_macros.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/stubs/port.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/stubs/status_macros.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/text_format.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/thread_safe_arena.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/unknown_field_set.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/util/delimited_message_util.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/util/field_comparator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/util/field_mask_util.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/util/json_util.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/util/message_differencer.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/util/time_util.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/util/type_resolver.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/util/type_resolver_util.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/varint_shuffle.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/wire_format.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/wire_format_lite.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/code_generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/command_line_interface.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/enum.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/extension.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/field_generators/generators.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/file.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/helpers.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/ifndef_guard.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/message.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/message_layout_helper.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/names.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/namespace_printer.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/options.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/padding_optimizer.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/parse_function_generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/service.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/cpp/tracker.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_doc_comment.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_enum.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_enum_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_field_base.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_helpers.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_map_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_message.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_message_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_options.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_primitive_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_reflection_class.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_repeated_message_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_source_generator_base.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/csharp_wrapper_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/csharp/names.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/context.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/doc_comment.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/field_common.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/file.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/enum.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/enum_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/extension.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/field_generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/generator_factory.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/make_field_gens.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/map_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/message.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/message_builder.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/message_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/primitive_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/service.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/full/string_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/generator_common.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/generator_factory.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/helpers.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/internal_helpers.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/java_features.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/kotlin_generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/enum.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/enum_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/extension.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/field_generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/generator_factory.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/make_field_gens.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/map_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/message.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/message_builder.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/message_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/primitive_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/lite/string_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/message_serialization.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/name_resolver.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/names.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/options.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/java/shared_code_generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/enum.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/enum_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/extension.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/file.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/helpers.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/import_writer.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/line_consumer.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/map_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/message.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/message_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/names.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/nsobject_methods.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/oneof.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/options.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/primitive_field.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/objectivec/tf_decode_data.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/php/names.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/php/php_generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/plugin.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/plugin.pb.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/python/generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/python/helpers.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/python/pyi_generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/retention.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/ruby/ruby_generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/accessors/accessor_case.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/accessors/accessors.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/accessors/generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/accessors/helpers.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/context.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/crate_mapping.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/enum.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/generator.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/message.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/naming.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/oneof.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/relative_path.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/rust_field_type.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/rust/rust_keywords.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/scc.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/subprocess.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/versions.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/zip_writer.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/testing/file.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/upb_generator/mangle.h
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/any.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/api.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/duration.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/empty.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/field_mask.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/source_context.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/struct.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/timestamp.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/type.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/wrappers.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/cpp_features.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/descriptor.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/google/protobuf/compiler/plugin.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/include/java/core/src/main/resources/google/protobuf/java_features.proto
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-targets.cmake
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-targets-release.cmake
-- Up-to-date: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-module.cmake
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-generate.cmake
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-options.cmake
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-config.cmake
-- Installing: /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-config-version.cmake
protobuf/5.27.0 package(): Packaged 1 '.0' file: protoc-27.0.0
protobuf/5.27.0 package(): Packaged 2 files: protoc, LICENSE
protobuf/5.27.0 package(): Packaged 238 '.h' files
protobuf/5.27.0 package(): Packaged 14 '.proto' files
protobuf/5.27.0 package(): Packaged 2 '.inc' files: port_undef.inc, port_def.inc
protobuf/5.27.0 package(): Packaged 4 '.a' files: libutf8_range.a, libprotobuf.a, libprotoc.a, libutf8_validity.a
protobuf/5.27.0 package(): Packaged 3 '.cmake' files: protobuf-module.cmake, protobuf-generate.cmake, protobuf-options.cmake
protobuf/5.27.0: Package '1418c555ed67198c4f10c64c60de393a878294d3' created
protobuf/5.27.0: Created package revision f540a76c84c3bee7fa8efed87bdefdfc
conan create --build=protobuf/5.27.0 --profile:host=profiles/clang15_libcxx -s build_type=Release -s:b build_type=Release -pr:b=profiles/clang15_libcxx recipes/protobuf protobuf/5.27.0@

For grpc the command was:

conan create --build=grpc/1.54.3 --profile:host=profiles/clang15_libcxx -s build_type=Release -s:b build_type=Release -pr:b=profiles/clang15_libcxx recipes/grpc grpc/1.54.3@

And the output:

Exporting package recipe
grpc/1.54.3 exports: File 'conandata.yml' found. Exporting it...
grpc/1.5WARN: protobuf/5.27.0: requirement zlib/[>=1.2.11 <2] overridden by grpc/1.54.3 to zlib/1.2.13 
grpc/1.54.3: WARN: Build folder is dirty, removing it: /Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465
CMake Error at CMakeLists.txt:38 (project):
  project could not find requested file:

    /Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/src/conan_cmake_project_include.cmake

CMake Error at /Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/build/Release/generators/protobuf-config.cmake:37 (include):
  include could not find requested file:

    /Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-conan-protoc-target.cmake
Call Stack (most recent call first):
  cmake/protobuf.cmake:58 (find_package)
  CMakeLists.txt:325 (include)

grpc/1.54.3: ERROR: Package '08ec8391bbf41e3d686fdf39f2e90a9e0b774465' build failed
grpc/1.54.3: WARN: Build folder /Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/build/Release
ERROR: grpc/1.54.3: Error in build() method, line 265
    cmake.configure()
    ConanException: Error 1 while executing cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="/Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/build/Release/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/Users/germandiago/.conan/data/grpc/1.54.3/_/_/package/08ec8391bbf41e3d686fdf39f2e90a9e0b774465" -DCMAKE_PROJECT_grpc_INCLUDE="/Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/src/conan_cmake_project_include.cmake" -DgRPC_BUILD_CODEGEN="ON" -DgRPC_BUILD_CSHARP_EXT="OFF" -DgRPC_BUILD_TESTS="OFF" -DgRPC_INSTALL="ON" -DgRPC_INSTALL_SHAREDIR="res/grpc" -DgRPC_ZLIB_PROVIDER="package" -DgRPC_CARES_PROVIDER="package" -DgRPC_RE2_PROVIDER="package" -DgRPC_SSL_PROVIDER="package" -DgRPC_PROTOBUF_PROVIDER="package" -DgRPC_ABSL_PROVIDER="package" -DgRPC_BUILD_GRPC_CPP_PLUGIN="ON" -DgRPC_BUILD_GRPC_CSHARP_PLUGIN="ON" -DgRPC_BUILD_GRPC_NODE_PLUGIN="ON" -DgRPC_BUILD_GRPC_OBJECTIVE_C_PLUGIN="ON" -DgRPC_BUILD_GRPC_PHP_PLUGIN="ON" -DgRPC_BUILD_GRPC_PYTHON_PLUGIN="ON" -DgRPC_BUILD_GRPC_RUBY_PLUGIN="ON" -DCMAKE_MACOSX_BUNDLE="OFF" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="Release" "/Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/src"
Traceback (most recent call last):
  File "/Users/germandiago/git/guinyote-project/conan/scripts/create-packages.py", line 233, in main
    create_package(
  File "/Users/germandiago/git/guinyote-project/conan/scripts/create-packages.py", line 138, in create_package
    sp.run(command.split(" "), check=True)
  File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/subprocess.py", line 571, in run
    raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['conan', 'create', '--build=grpc/1.54.3', '--profile:host=profiles/clang15_libcxx', '-s', 'build_type=Release', '-s:b', 'build_type=Release', '-pr:b=profiles/clang15_libcxx', 'recipes/grpc', 'grpc/1.54.3@']' returned non-zero exit status 1.
sing 'cmake --preset release'
grpc/1.54.3: If your CMake version is not compatible with CMakePresets (<3.19) call cmake like: 'cmake <path> -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=/Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/build/Release/generators/conan_toolchain.cmake -DCMAKE_POLICY_DEFAULT_CMP0091=NEW -DCMAKE_BUILD_TYPE=Release'
grpc/1.54.3: Generator 'CMakeDeps' calling 'generate()'
grpc/1.54.3: Calling generate()
grpc/1.54.3: Preset 'release' added to CMakePresets.json. Invoke it manually using 'cmake --preset release'
grpc/1.54.3: If your CMake version is not compatible with CMakePresets (<3.19) call cmake like: 'cmake <path> -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=/Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/build/Release/generators/conan_toolchain.cmake -DCMAKE_PROJECT_grpc_INCLUDE=/Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/src/conan_cmake_project_include.cmake -DgRPC_BUILD_CODEGEN=ON -DgRPC_BUILD_CSHARP_EXT=OFF -DgRPC_BUILD_TESTS=OFF -DgRPC_INSTALL=ON -DgRPC_INSTALL_SHAREDIR=res/grpc -DgRPC_ZLIB_PROVIDER=package -DgRPC_CARES_PROVIDER=package -DgRPC_RE2_PROVIDER=package -DgRPC_SSL_PROVIDER=package -DgRPC_PROTOBUF_PROVIDER=package -DgRPC_ABSL_PROVIDER=package -DgRPC_BUILD_GRPC_CPP_PLUGIN=ON -DgRPC_BUILD_GRPC_CSHARP_PLUGIN=ON -DgRPC_BUILD_GRPC_NODE_PLUGIN=ON -DgRPC_BUILD_GRPC_OBJECTIVE_C_PLUGIN=ON -DgRPC_BUILD_GRPC_PHP_PLUGIN=ON -DgRPC_BUILD_GRPC_PYTHON_PLUGIN=ON -DgRPC_BUILD_GRPC_RUBY_PLUGIN=ON -DCMAKE_MACOSX_BUNDLE=OFF -DCMAKE_POLICY_DEFAULT_CMP0091=NEW -DCMAKE_BUILD_TYPE=Release'
grpc/1.54.3: Aggregating env generators
grpc/1.54.3: Calling build()
grpc/1.54.3: Apply patch (backport)
grpc/1.54.3: CMake command: cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="/Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/build/Release/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/Users/germandiago/.conan/data/grpc/1.54.3/_/_/package/08ec8391bbf41e3d686fdf39f2e90a9e0b774465" -DCMAKE_PROJECT_grpc_INCLUDE="/Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/src/conan_cmake_project_include.cmake" -DgRPC_BUILD_CODEGEN="ON" -DgRPC_BUILD_CSHARP_EXT="OFF" -DgRPC_BUILD_TESTS="OFF" -DgRPC_INSTALL="ON" -DgRPC_INSTALL_SHAREDIR="res/grpc" -DgRPC_ZLIB_PROVIDER="package" -DgRPC_CARES_PROVIDER="package" -DgRPC_RE2_PROVIDER="package" -DgRPC_SSL_PROVIDER="package" -DgRPC_PROTOBUF_PROVIDER="package" -DgRPC_ABSL_PROVIDER="package" -DgRPC_BUILD_GRPC_CPP_PLUGIN="ON" -DgRPC_BUILD_GRPC_CSHARP_PLUGIN="ON" -DgRPC_BUILD_GRPC_NODE_PLUGIN="ON" -DgRPC_BUILD_GRPC_OBJECTIVE_C_PLUGIN="ON" -DgRPC_BUILD_GRPC_PHP_PLUGIN="ON" -DgRPC_BUILD_GRPC_PYTHON_PLUGIN="ON" -DgRPC_BUILD_GRPC_RUBY_PLUGIN="ON" -DCMAKE_MACOSX_BUNDLE="OFF" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="Release" "/Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/src"
-- Using Conan toolchain: /Users/germandiago/.conan/data/grpc/1.54.3/_/_/build/08ec8391bbf41e3d686fdf39f2e90a9e0b774465/build/Release/generators/conan_toolchain.cmake
-- Conan toolchain: Setting CMAKE_POSITION_INDEPENDENT_CODE=ON (options.fPIC)
-- Conan toolchain: C++ Standard 20 with extensions OFF
-- Conan toolchain: Setting BUILD_SHARED_LIBS = OFF
-- The C compiler identification is AppleClang 15.0.0.15000309
-- The CXX compiler identification is AppleClang 15.0.0.15000309
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang - 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: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE  
-- Conan: Component target declared 'absl::config'
-- Conan: Component target declared 'absl::dynamic_annotations'
-- Conan: Component target declared 'absl::core_headers'
-- Conan: Component target declared 'absl::pretty_function'
-- Conan: Component target declared 'absl::fast_type_id'
-- Conan: Component target declared 'absl::prefetch'
-- Conan: Component target declared 'absl::algorithm'
-- Conan: Component target declared 'absl::hashtable_debug_hooks'
-- Conan: Component target declared 'absl::node_slot_policy'
-- Conan: Component target declared 'absl::non_temporal_arm_intrinsics'
-- Conan: Component target declared 'absl::non_temporal_memcpy'
-- Conan: Component target declared 'absl::leak_check'
-- Conan: Component target declared 'absl::flags_commandlineflag_internal'
-- Conan: Component target declared 'absl::log_internal_config'
-- Conan: Component target declared 'absl::log_internal_nullguard'
-- Conan: Component target declared 'absl::log_internal_voidify'
-- Conan: Component target declared 'absl::type_traits'
-- Conan: Component target declared 'absl::meta'
-- Conan: Component target declared 'absl::bits'
-- Conan: Component target declared 'absl::int128'
-- Conan: Component target declared 'absl::numeric'
-- Conan: Component target declared 'absl::numeric_representation'
-- Conan: Component target declared 'absl::exponential_biased'
-- Conan: Component target declared 'absl::periodic_sampler'
-- Conan: Component target declared 'absl::random_seed_gen_exception'
-- Conan: Component target declared 'absl::random_internal_traits'
-- Conan: Component target declared 'absl::random_internal_fast_uniform_bits'
-- Conan: Component target declared 'absl::random_internal_iostream_state_saver'
-- Conan: Component target declared 'absl::random_internal_wide_multiply'
-- Conan: Component target declared 'absl::random_internal_fastmath'
-- Conan: Component target declared 'absl::random_internal_pcg_engine'
-- Conan: Component target declared 'absl::random_internal_platform'
-- Conan: Component target declared 'absl::random_internal_randen_slow'
-- Conan: Component target declared 'absl::random_internal_randen_hwaes_impl'
-- Conan: Component target declared 'absl::random_internal_uniform_helper'
-- Conan: Component target declared 'absl::has_ostream_operator'
-- Conan: Component target declared 'absl::cordz_update_tracker'
-- Conan: Component target declared 'absl::civil_time'
-- Conan: Component target declared 'absl::time_zone'
-- Conan: Component target declared 'absl::compare'
-- Conan: Component target declared 'absl::if_constexpr'
-- Conan: Component target declared 'absl::atomic_hook'
-- Conan: Component target declared 'absl::errno_saver'
-- Conan: Component target declared 'absl::log_severity'
-- Conan: Component target declared 'absl::no_destructor'
-- Conan: Component target declared 'absl::nullability'
-- Conan: Component target declared 'absl::raw_logging_internal'
-- Conan: Component target declared 'absl::base_internal'
-- Conan: Component target declared 'absl::throw_delegate'
-- Conan: Component target declared 'absl::scoped_set_env'
-- Conan: Component target declared 'absl::strerror'
-- Conan: Component target declared 'absl::algorithm_container'
-- Conan: Component target declared 'absl::common_policy_traits'
-- Conan: Component target declared 'absl::hashtable_debug'
-- Conan: Component target declared 'absl::container_common'
-- Conan: Component target declared 'absl::debugging_internal'
-- Conan: Component target declared 'absl::overload'
-- Conan: Component target declared 'absl::memory'
-- Conan: Component target declared 'absl::random_internal_generate_real'
-- Conan: Component target declared 'absl::random_internal_randen_hwaes'
-- Conan: Component target declared 'absl::cordz_functions'
-- Conan: Component target declared 'absl::bad_any_cast_impl'
-- Conan: Component target declared 'absl::span'
-- Conan: Component target declared 'absl::bad_optional_access'
-- Conan: Component target declared 'absl::bad_variant_access'
-- Conan: Component target declared 'absl::utility'
-- Conan: Component target declared 'absl::spinlock_wait'
-- Conan: Component target declared 'absl::base'
-- Conan: Component target declared 'absl::endian'
-- Conan: Component target declared 'absl::cleanup_internal'
-- Conan: Component target declared 'absl::cleanup'
-- Conan: Component target declared 'absl::compressed_tuple'
-- Conan: Component target declared 'absl::fixed_array'
-- Conan: Component target declared 'absl::inlined_vector_internal'
-- Conan: Component target declared 'absl::inlined_vector'
-- Conan: Component target declared 'absl::container_memory'
-- Conan: Component target declared 'absl::hash_policy_traits'
-- Conan: Component target declared 'absl::crc_cpu_detect'
-- Conan: Component target declared 'absl::crc_internal'
-- Conan: Component target declared 'absl::stacktrace'
-- Conan: Component target declared 'absl::demangle_internal'
-- Conan: Component target declared 'absl::debugging'
-- Conan: Component target declared 'absl::any_invocable'
-- Conan: Component target declared 'absl::bind_front'
-- Conan: Component target declared 'absl::function_ref'
-- Conan: Component target declared 'absl::city'
-- Conan: Component target declared 'absl::low_level_hash'
-- Conan: Component target declared 'absl::log_internal_conditions'
-- Conan: Component target declared 'absl::random_internal_distribution_caller'
-- Conan: Component target declared 'absl::random_internal_randen'
-- Conan: Component target declared 'absl::string_view'
-- Conan: Component target declared 'absl::charset'
-- Conan: Component target declared 'absl::strings_internal'
-- Conan: Component target declared 'absl::bad_any_cast'
-- Conan: Component target declared 'absl::optional'
-- Conan: Component target declared 'absl::variant'
-- Conan: Component target declared 'absl::malloc_internal'
-- Conan: Component target declared 'absl::random_bit_gen_ref'
-- Conan: Component target declared 'absl::random_internal_mock_helpers'
-- Conan: Component target declared 'absl::random_internal_randen_engine'
-- Conan: Component target declared 'absl::strings'
-- Conan: Component target declared 'absl::str_format_internal'
-- Conan: Component target declared 'absl::graphcycles_internal'
-- Conan: Component target declared 'absl::time'
-- Conan: Component target declared 'absl::any'
-- Conan: Component target declared 'absl::layout'
-- Conan: Component target declared 'absl::symbolize'
-- Conan: Component target declared 'absl::examine_stack'
-- Conan: Component target declared 'absl::failure_signal_handler'
-- Conan: Component target declared 'absl::flags_path_util'
-- Conan: Component target declared 'absl::flags_commandlineflag'
-- Conan: Component target declared 'absl::flags_private_handle_accessor'
-- Conan: Component target declared 'absl::hash'
-- Conan: Component target declared 'absl::log_internal_globals'
-- Conan: Component target declared 'absl::log_internal_proto'
-- Conan: Component target declared 'absl::log_internal_nullstream'
-- Conan: Component target declared 'absl::log_internal_append_truncated'
-- Conan: Component target declared 'absl::log_entry'
-- Conan: Component target declared 'absl::log_sink'
-- Conan: Component target declared 'absl::log_internal_fnmatch'
-- Conan: Component target declared 'absl::random_distributions'
-- Conan: Component target declared 'absl::random_internal_seed_material'
-- Conan: Component target declared 'absl::random_internal_pool_urbg'
-- Conan: Component target declared 'absl::random_internal_salted_seed_seq'
-- Conan: Component target declared 'absl::random_internal_nonsecure_base'
-- Conan: Component target declared 'absl::str_format'
-- Conan: Component target declared 'absl::kernel_timeout_internal'
-- Conan: Component target declared 'absl::synchronization'
-- Conan: Component target declared 'absl::crc32c'
-- Conan: Component target declared 'absl::crc_cord_state'
-- Conan: Component target declared 'absl::flags_program_name'
-- Conan: Component target declared 'absl::flags_config'
-- Conan: Component target declared 'absl::flags_marshalling'
-- Conan: Component target declared 'absl::flags_internal'
-- Conan: Component target declared 'absl::log_internal_format'
-- Conan: Component target declared 'absl::vlog_config_internal'
-- Conan: Component target declared 'absl::absl_vlog_is_on'
-- Conan: Component target declared 'absl::vlog_is_on'
-- Conan: Component target declared 'absl::sample_recorder'
-- Conan: Component target declared 'absl::random_seed_sequences'
-- Conan: Component target declared 'absl::random_internal_distribution_test_util'
-- Conan: Component target declared 'absl::cord_internal'
-- Conan: Component target declared 'absl::cordz_statistics'
-- Conan: Component target declared 'absl::cordz_handle'
-- Conan: Component target declared 'absl::cordz_info'
-- Conan: Component target declared 'absl::cordz_sample_token'
-- Conan: Component target declared 'absl::cordz_update_scope'
-- Conan: Component target declared 'absl::cord'
-- Conan: Component target declared 'absl::btree'
-- Conan: Component target declared 'absl::hash_function_defaults'
-- Conan: Component target declared 'absl::hashtablez_sampler'
-- Conan: Component target declared 'absl::raw_hash_set'
-- Conan: Component target declared 'absl::log_globals'
-- Conan: Component target declared 'absl::log_initialize'
-- Conan: Component target declared 'absl::random_random'
-- Conan: Component target declared 'absl::status'
-- Conan: Component target declared 'absl::statusor'
-- Conan: Component target declared 'absl::flat_hash_set'
-- Conan: Component target declared 'absl::node_hash_set'
-- Conan: Component target declared 'absl::raw_hash_map'
-- Conan: Component target declared 'absl::log_internal_log_sink_set'
-- Conan: Component target declared 'absl::log_sink_registry'
-- Conan: Component target declared 'absl::flat_hash_map'
-- Conan: Component target declared 'absl::node_hash_map'
-- Conan: Component target declared 'absl::flags_reflection'
-- Conan: Component target declared 'absl::flags'
-- Conan: Component target declared 'absl::flags_usage_internal'
-- Conan: Component target declared 'absl::flags_usage'
-- Conan: Component target declared 'absl::flags_parse'
-- Conan: Component target declared 'absl::log_internal_flags'
-- Conan: Component target declared 'absl::log_internal_message'
-- Conan: Component target declared 'absl::log_internal_strip'
-- Conan: Component target declared 'absl::log_flags'
-- Conan: Component target declared 'absl::log_internal_structured'
-- Conan: Component target declared 'absl::log_structured'
-- Conan: Component target declared 'absl::log_internal_check_op'
-- Conan: Component target declared 'absl::log_internal_log_impl'
-- Conan: Component target declared 'absl::absl_log'
-- Conan: Component target declared 'absl::log'
-- Conan: Component target declared 'absl::log_streamer'
-- Conan: Component target declared 'absl::log_internal_check_impl'
-- Conan: Component target declared 'absl::absl_check'
-- Conan: Component target declared 'absl::check'
-- Conan: Component target declared 'absl::die_if_null'
-- Conan: Target declared 'abseil::abseil'
-- Conan: Including build module from '/Users/germandiago/.conan/data/abseil/20240116.2/_/_/package/117197ae0cd56232191fb60abd303a8cd4b5bea2/lib/cmake/conan_trick/cxx_std.cmake'
-- Conan: Component target declared 'c-ares::cares'
-- Conan: Component target declared 'utf8_range::utf8_range'
-- Conan: Component target declared 'utf8_range::utf8_validity'
-- Conan: Component target declared 'protobuf::libprotobuf'
-- Conan: Component target declared 'protobuf::libprotoc'
-- Conan: Target declared 'protobuf::protobuf'
-- Conan: Target declared 'ZLIB::ZLIB'
-- Conan: Including build module from '/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-generate.cmake'
-- Conan: Including build module from '/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-module.cmake'
-- Conan: Including build module from '/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-options.cmake'
-- Conan: Including build module from '/Users/germandiago/.conan/data/protobuf/5.27.0/_/_/package/1418c555ed67198c4f10c64c60de393a878294d3/lib/cmake/protobuf/protobuf-conan-protoc-target.cmake'
-- Conan: Target declared 're2::re2'
-- Conan: Component target declared 'OpenSSL::Crypto'
-- Conan: Component target declared 'OpenSSL::SSL'
-- Conan: Target declared 'openssl::openssl'
-- Conan: Including build module from '/Users/germandiago/.conan/data/openssl/3.1.1/_/_/package/e9f07dfa144ef37dc6c37c29951aec7cd4416764/lib/cmake/conan-official-openssl-variables.cmake'
-- Downloading from https://storage.googleapis.com/grpc-bazel-mirror/github.com/census-instrumentation/opencensus-proto/archive/v0.3.0.tar.gz, if failed, please try configuring again
-- Configuring incomplete, errors occurred!
grpc/1.54.3: 
conan create --build=grpc/1.54.3 --profile:host=profiles/clang15_libcxx -s build_type=Release -s:b build_type=Release -pr:b=profiles/clang15_libcxx recipes/grpc grpc/1.54.3@
Command '['conan', 'create', '--build=grpc/1.54.3', '--profile:host=profiles/clang15_libcxx', '-s', 'build_type=Release', '-s:b', 'build_type=Release', '-pr:b=profiles/clang15_libcxx', 'recipes/grpc', 'grpc/1.54.3@']' returned non-zero exit status 1.. None

Hope it helps.

A side-note as well. This dependency expression in the recipe: self.requires("openssl/[>=1.1 <4]")

Resolved to openssl/3.2.0 but in my artifactory I have a recipe for openssl/3.1.1 which I think it is within the range. Should I expect mine to be found?

germandiagogomez commented 2 months ago

This can be closed already. The solution is to use conan center index repo instead of the direct recipes from conancenter.