vcpkg icon indicating copy to clipboard operation
vcpkg copied to clipboard

[tracy] update to 0.12.0

Open toge opened this issue 6 months ago • 1 comments

  • [x] Changes comply with the maintainer guide.
  • [x] SHA512s are updated for each updated download.
  • [x] The "supports" clause reflects platforms that may be fixed by this new version.
  • [x] Any fixed CI baseline entries are removed from that file.
  • [x] Any patches that are no longer applied are deleted from the port's directory.
  • [x] The version database is fixed by rerunning ./vcpkg x-add-version --all and committing the result.
  • [x] Only one version is added to each modified port's versions file.

https://github.com/wolfpld/tracy/releases/tag/v0.12.0

toge avatar Jun 03 '25 15:06 toge

Failure logs: https://dev.azure.com/vcpkg/public/_build/results?buildId=116343&view=artifacts&pathAsName=false&type=publishedArtifacts

Cheney-W avatar Jun 04 '25 09:06 Cheney-W

@toge Hello

https://github.com/microsoft/vcpkg/pull/46063 "[tracy] update to 0.12.1" is my experiment

I think you should not remove CPMAddPackage() commands https://github.com/cpm-cmake/CPM.cmake "CPM can be configured to use find_package to search for locally installed dependencies first by setting the CMake option CPM_USE_LOCAL_PACKAGES. If the option CPM_LOCAL_PACKAGES_ONLY is set, CPM will emit an error if the dependency is not found locally." -DCPM_LOCAL_PACKAGES_ONLY=ON -DCPM_DONT_UPDATE_MODULE_PATH=ON It may be removed: -DFETCHCONTENT_FULLY_DISCONNECTED=ON -DFETCHCONTENT_TRY_FIND_PACKAGE_MODE=ALWAYS

https://github.com/wolfpld/tracy/blob/master/cmake/vendor.cmake

Oh. I see what must be fixed. There're no pkg_check_modules() commands.

CPMAddPackage( NAME zstd GITHUB_REPOSITORY facebook/zstd GIT_TAG v1.5.7 OPTIONS "ZSTD_BUILD_SHARED OFF" EXCLUDE_FROM_ALL TRUE SOURCE_SUBDIR build/cmake )

gav2xlin avatar Jun 21 '25 10:06 gav2xlin