Version 1.0.4 won't build with cuda>11
Search Criteria
Package Details: cctag 1.0.4-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/cctag.git (read-only, click to copy) |
---|---|
Package Base: | cctag |
Description: | Detection of CCTag markers made up of concentric circles. |
Upstream URL: | https://github.com/alicevision/CCTag |
Licenses: | MPL2 |
Submitter: | svenstaro |
Maintainer: | bartus |
Last Packager: | bartus |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2024-05-21 23:51 (UTC) |
Last Updated: | 2024-07-23 14:35 (UTC) |
Dependencies (7)
- boost-libs
- tbb (onetbb-gitAUR, onetbb)
- boost (boost-gitAUR) (make)
- cmake (cmake-gitAUR) (make)
- eigen (eigen-gitAUR) (make)
- ninja (ninja-kitwareAUR, ninja-memAUR, ninja-fuchsia-gitAUR, ninja-gitAUR, ninja-jobserverAUR) (make)
- opencv (opencv-cuda) (make)
Required by (1)
Sources (1)
Latest Comments
bartus commented on 2024-07-23 09:45 (UTC)
bartus commented on 2024-07-23 09:44 (UTC)
Use env vars to control the build process:
CUDA_ARCH="x.x;y.y"
to build for a specific Cuda arch, supports multiple values (semicolon separated).GPU_DETECT
detect local GPU arch (default off)DISABLE_CUDA
build without cuda support (default off)ENABLE_APPS
build sample apps (default off)ENABLE_AVX2
enable AVX2 optimizations (default off)ENABLE_SERIALIZE
Store all the output, preserves reproducibility (default off)ENABLE_VISUAL_DEBUG
enable visual debug (default off)THRUST_COPY_IF
don't use thrust::copy_if() (bug on cuda:7 with GTX 980/1080, default off)-
ENABLE_DOC
build doc (default off) -
MAKEFLAGS="xxx yyy"
to override default make flags.
Usage cases:
makepkg GPU_DETECT=1 MAKEFLAGS=-j1
yay -S cctag --mflags "CUDA_ARCH=5.2;ENABLE_APPS=1"
Pinned Comments
bartus commented on 2024-07-23 09:45 (UTC)
Version 1.0.4 won't build with
cuda>11
bartus commented on 2024-07-23 09:44 (UTC)
Use env vars to control the build process:
CUDA_ARCH="x.x;y.y"
to build for a specific Cuda arch, supports multiple values (semicolon separated).GPU_DETECT
detect local GPU arch (default off)DISABLE_CUDA
build without cuda support (default off)ENABLE_APPS
build sample apps (default off)ENABLE_AVX2
enable AVX2 optimizations (default off)ENABLE_SERIALIZE
Store all the output, preserves reproducibility (default off)ENABLE_VISUAL_DEBUG
enable visual debug (default off)THRUST_COPY_IF
don't use thrust::copy_if() (bug on cuda:7 with GTX 980/1080, default off)ENABLE_DOC
build doc (default off)MAKEFLAGS="xxx yyy"
to override default make flags.Usage cases:
makepkg GPU_DETECT=1 MAKEFLAGS=-j1
yay -S cctag --mflags "CUDA_ARCH=5.2;ENABLE_APPS=1"