Search Criteria
Package Details: vkpeak 20250531-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/vkpeak.git (read-only, click to copy) |
---|---|
Package Base: | vkpeak |
Description: | A tool which profiles Vulkan devices to find their peak capacities |
Upstream URL: | https://github.com/nihui/vkpeak |
Licenses: | MIT |
Submitter: | bjin |
Maintainer: | bjin |
Last Packager: | bjin |
Votes: | 1 |
Popularity: | 0.000001 |
First Submitted: | 2023-08-12 02:58 (UTC) |
Last Updated: | 2025-06-20 02:52 (UTC) |
Dependencies (6)
- vulkan-icd-loader (vulkan-icd-loader-gitAUR)
- cmake (cmake3AUR, cmake-gitAUR) (make)
- glslang (glslang-gitAUR) (make)
- ninja (ninja-kitwareAUR, ninja-fuchsia-gitAUR, ninja-gitAUR, ninja-jobserverAUR, ninja-memAUR, ninja-noemacs-gitAUR) (make)
- protobuf (protobuf-gitAUR) (make)
- vulkan-headers (vulkan-headers-gitAUR) (make)
Latest Comments
HurricanePootis commented on 2025-06-19 17:15 (UTC)
HurricanePootis commented on 2025-06-19 15:20 (UTC)
Hello, this package could do with the following changes:
src/
prepare()
build()
andpackage()
. This includes: building outside of the src directory, setting build type to none, and not using-j ${nproc}
(more on that later).Packages are not supposed to use anything related to
nproc
unless absolutely required whenever dealing with obscure build systems. However, users themselves are supposed to edit/etc/makepkg.conf
and change theMAKEFLAGS
to something likeMAKEFKAGLS="-j12"
.unit73e commented on 2025-06-14 17:18 (UTC)
@bjin I fixed it myself. Here's the commit: https://github.com/unit73e/vkpeak/commit/f14e537cc65a5f392ccddfb6563111b0a7036502
Feel free to cherry pick or copy.
unit73e commented on 2025-06-14 16:50 (UTC)
@bjin doesn't compile anymore because of a new version of CMake. Fixing this requires some patching, namely force minimum CMake to be 3.15 and cstdint has to be declared in some places because it's not implicit anymore.