Skip to content

Instantly share code, notes, and snippets.

View uilianries's full-sized avatar

Uilian Ries uilianries

View GitHub Profile
@uilianries
uilianries / CMakeLists.txt
Created November 27, 2024 14:15
CCI Issue 26047 - FFMpeg working on Windows
cmake_minimum_required(VERSION 3.15)
project(test_package LANGUAGES CXX)
find_package(ffmpeg REQUIRED CONFIG)
add_executable(${PROJECT_NAME} main.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE ffmpeg::avutil)
if (TARGET ffmpeg::avdevice)
target_compile_definitions(${PROJECT_NAME} PRIVATE HAVE_FFMPEG_AVDEVICE)
target_link_libraries(${PROJECT_NAME} PRIVATE ffmpeg::avdevice)
@uilianries
uilianries / CMakeLists.txt
Created November 27, 2024 11:56
CCI Issue 25888 - Validation
cmake_minimum_required(VERSION 3.15)
project(boost-fiber-validate CXX)
find_package(Boost REQUIRED CONFIG COMPONENTS fiber)
add_executable(${PROJECT_NAME} main.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE Boost::fiber)
@uilianries
uilianries / joltphysics-5.2.0-linux-armv8-static.log
Last active November 21, 2024 08:04
JoltPhysics 5.2.0 - Build commit 74c2e2e82
======== Exporting recipe to the cache ========
joltphysics/5.2.0: Exporting package recipe: /home/uilian/Development/conan/conan-center-index/recipes/joltphysics/5.x/conanfile.py
joltphysics/5.2.0: exports: File 'conandata.yml' found. Exporting it...
joltphysics/5.2.0: Copied 1 '.py' file: conanfile.py
joltphysics/5.2.0: Copied 1 '.yml' file: conandata.yml
joltphysics/5.2.0: Exported to cache folder: /home/uilian/.conan2/p/joltpad0f39dc540cd/e
joltphysics/5.2.0: Exported: joltphysics/5.2.0#68c727bec3219e9e7ce5f1c589c81c1c (2024-11-21 07:58:23 UTC)
======== Input profiles ========
@uilianries
uilianries / keystone-0.9.2-linux-shared.log
Last active November 20, 2024 11:34
Keystone 0.9.2 - Build logs PR 25968
======== Exporting recipe to the cache ========
keystone/0.9.2: Exporting package recipe: /home/uilian/Development/conan/conan-center-index/recipes/keystone/all/conanfile.py
keystone/0.9.2: exports: File 'conandata.yml' found. Exporting it...
keystone/0.9.2: Copied 1 '.py' file: conanfile.py
keystone/0.9.2: Copied 1 '.yml' file: conandata.yml
keystone/0.9.2: Exported to cache folder: /home/uilian/.conan2/p/keyst848ee195ee8f0/e
keystone/0.9.2: Exported: keystone/0.9.2#91ad5dce5ed6a49a5e26a60e389a52cd (2024-11-20 11:23:48 UTC)
======== Input profiles ========
@uilianries
uilianries / linux-amd64-gcc13-shared.log
Created November 19, 2024 08:47
CCI OpenTrackIO - PR25718 Review
conan create all --version=1.0.0 -s compiler.cppstd=20 -o "*/*:shared=True" --build=missing
======== Exporting recipe to the cache ========
opentrackio-cpp/1.0.0: Exporting package recipe: /home/conan/project/all/conanfile.py
opentrackio-cpp/1.0.0: exports: File 'conandata.yml' found. Exporting it...
opentrackio-cpp/1.0.0: Copied 1 '.py' file: conanfile.py
opentrackio-cpp/1.0.0: Copied 1 '.yml' file: conandata.yml
opentrackio-cpp/1.0.0: Exported to cache folder: /home/conan/.conan2/p/opentc1b4fa0843b55/e
opentrackio-cpp/1.0.0: Exported: opentrackio-cpp/1.0.0#f2e6f9498070f349f6e7604a6431a619 (2024-11-19 08:45:20 UTC)
@uilianries
uilianries / linux-intel-gcc11.log
Last active November 7, 2024 08:34
CCI - Build log issue 4073
conan create all --version=1.78.0 -o "&:i18n_backend_icu=True" -o "&:without_locale=False" -c tools.build:verbosity=quiet
======== Exporting recipe to the cache ========
boost/1.78.0: Exporting package recipe: /home/uilian/Development/conan/conan-center-index/recipes/boost/all/conanfile.py
boost/1.78.0: exports: File 'conandata.yml' found. Exporting it...
boost/1.78.0: Calling export()
boost/1.78.0: Calling export_sources()
boost/1.78.0: Copied 1 '.py' file: conanfile.py
boost/1.78.0: Copied 2 '.yml' files: conandata.yml, dependencies-1.78.0.yml
boost/1.78.0: Copied 6 '.patch' files
@uilianries
uilianries / raylib-3.5.0-linux-static-all-options-true
Last active October 31, 2024 09:12
CCI PR #24585: Raylib build logs
conan create all --version=3.5.0 -o "&:customize_build=True" -o "&:events_waiting=True"
======== Exporting recipe to the cache ========
raylib/3.5.0: Exporting package recipe: /home/conan/project/all/conanfile.py
raylib/3.5.0: exports: File 'conandata.yml' found. Exporting it...
raylib/3.5.0: Calling export_sources()
raylib/3.5.0: Copied 1 '.py' file: conanfile.py
raylib/3.5.0: Copied 1 '.yml' file: conandata.yml
raylib/3.5.0: Copied 3 '.patch' files: 3.5.0-0001-enable-cmake-build-android.patch, 3.5.0-0003-win32-glfw3native.patch, 3.5.0-0002-cmake-project.patch
raylib/3.5.0: Exported to cache folder: /home/conan/.conan2/p/rayli7ee64f854efd9/e
conan install conanfile.py -pr:h mingw -o "&:BOARD=HOST" --build=missing
======== Input profiles ========
Profile host:
[settings]
arch=x86_64
build_type=Release
compiler=gcc
compiler.exception=sjlj
compiler.libcxx=libstdc++11
@uilianries
uilianries / test_package.log
Created August 6, 2024 07:37
OpenVino 2023.2.0: Cyclic dependency error
======== Launching test_package ========
======== Computing dependency graph ========
Graph root
openvino/2023.2.0 (test package): /home/uilian/Development/conan/conan-center-index/recipes/openvino/all/test_package/conanfile.py
Requirements
ade/0.1.2d#f225d0a218a7c9fbb81746806c7de53d - Cache
flatbuffers/23.5.26#b153646f6546daab4c7326970b6cd89c - Cache
hwloc/2.9.3#11acb96cf1e611d293bf90172fadff7d - Cache
onetbb/2021.10.0#392025f41c89bb357fd38237ba9f4f71 - Cache
@uilianries
uilianries / libx265-android-clang17-build.log
Last active July 15, 2024 07:13
Conan: Build libx265 for Android
$ conan create all --version=3.4 -pr:b=default -pr:h=android
======== Exporting recipe to the cache ========
libx265/3.4: Exporting package recipe: /home/uilian/Development/conan/conan-center-index/recipes/libx265/all/conanfile.py
libx265/3.4: exports: File 'conandata.yml' found. Exporting it...
libx265/3.4: Calling export_sources()
libx265/3.4: Copied 1 '.py' file: conanfile.py
libx265/3.4: Copied 1 '.yml' file: conandata.yml
libx265/3.4: Copied 3 '.patch' files: 3.2.1-0002-cmake-min-required.patch, 3.4-0001-numa.patch, 3.2.1-0001-remove_register_classifier.patch
libx265/3.4: Exported to cache folder: /home/uilian/.conan2/p/libx26058c88b85f32/e