Search Criteria
Package Details: zig-git 0.11.0.r3596.gfbb38a7682-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/zig-git.git (read-only, click to copy) |
---|---|
Package Base: | zig-git |
Description: | a programming language prioritizing robustness, optimality, and clarity |
Upstream URL: | https://ziglang.org |
Keywords: | compiler language programming zig ziglang |
Licenses: | MIT |
Conflicts: | zig |
Provides: | zig |
Submitter: | PedroHLC |
Maintainer: | leopoldek |
Last Packager: | leopoldek |
Votes: | 12 |
Popularity: | 0.000029 |
First Submitted: | 2016-08-09 17:43 (UTC) |
Last Updated: | 2024-04-08 18:38 (UTC) |
Dependencies (5)
- clang (llvm-rocm-gitAUR, llvm-gitAUR, clang-minimal-gitAUR)
- lld (llvm-rocm-gitAUR, llvm-gitAUR)
- llvm (llvm-rocm-gitAUR, llvm-gitAUR, llvm-minimal-gitAUR)
- cmake (cmake-gitAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
Required by (88)
- 2048.zig (requires zig) (make)
- asciigen (requires zig) (make)
- brightnessztl (requires zig) (make)
- bun (requires zig) (make)
- buongiorno (requires zig) (make)
- buongiorno-git (requires zig) (make)
- cargo-lambda-bin (requires zig)
- cleartouch-git (requires zig) (make)
- cmake-pkg (requires zig) (make)
- colorstorm (requires zig) (make)
- cyberscript (requires zig) (make)
- deshader-git (requires zig) (make)
- digisim-git (requires zig) (make)
- erasmus (requires zig) (make)
- est (requires zig) (make)
- gb-emu-zig-git (requires zig) (make)
- ghostty-git (requires zig) (make)
- ghostty-git-zen3 (requires zig) (make)
- glsl_analyzer (requires zig) (make)
- gmi2html (requires zig) (make)
- gpower2-git (requires zig) (make)
- gyro (requires zig) (make)
- hevi (requires zig) (make)
- hevi-git (requires zig) (make)
- hr-zig (requires zig) (make)
- hsh (requires zig) (make)
- kble-git (requires zig) (make)
- linuxwave-git (requires zig) (make)
- luax-git (requires zig)
- ly-git (requires zig) (make)
- mepo (requires zig) (make)
- mepo (requires zig) (check)
- mepo-git (requires zig) (make)
- mepo-git (requires zig) (check)
- namedicon-git (requires zig) (make)
- ncduh-git (requires zig) (make)
- nfm-git (requires zig) (make)
- nixpacks (requires zig) (check)
- nixpacks (requires zig) (optional)
- nvim-zig-git (requires zig) (optional)
- outfieldr (requires zig) (make)
- outfieldr-git (requires zig) (make)
- passphrase (requires zig) (make)
- passphrase-git (requires zig) (make)
- poop-git (requires zig) (make)
- randomutils (requires zig) (make)
- rhp-git (requires zig) (make)
- river-bedload-git (requires zig) (make)
- river-creek (requires zig) (make)
- river-creek-git (requires zig) (make)
- river-git (requires zig) (make)
- river-levee (requires zig) (make)
- river-levee-git (requires zig) (make)
- river-noxwayland-git (requires zig) (make)
- river-ultitile-git (requires zig)
- rivercarro (requires zig) (make)
- rivercarro-git (requires zig) (make)
- spider (requires zig) (make)
- stacktile-git (requires zig) (make)
- superhtml (requires zig) (make)
- uwaka-git (requires zig) (make)
- vim-zig-git (requires zig) (optional)
- waveterm (requires zig) (make)
- waveterm-git (requires zig) (make)
- waylock-git (requires zig) (make)
- wayprompt (requires zig) (make)
- wayprompt-git (requires zig) (make)
- weighted-choice (requires zig) (make)
- yaksha (requires zig)
- yell (requires zig) (make)
- zf (requires zig) (make)
- zig-zvm (requires zig) (make)
- zig-zvm-git (requires zig) (make)
- zigmod (requires zig) (make)
- zigup (requires zig) (make)
- zkg-git (requires zig) (make)
- zls-git (requires zig)
- zpotify (requires zig) (make)
- ztags-git (make)
- zterm (requires zig) (make)
- zterm-git (requires zig) (make)
- zur (requires zig) (make)
- zur-git (requires zig) (make)
Latest Comments
« First ‹ Previous 1 2 3 4 5 Next › Last »
graysky commented on 2022-06-17 12:43 (UTC)
@clarfonthey - just build with
makepkg -sA
to skip the arch check.Techcable commented on 2022-05-24 18:14 (UTC)
It would be really amazing if you could add a debug build for this package. Maybe using
OPTIONS=(debug !strip)
and passing the appropriate options to cmake.Not sure if this is best done in a seperate package, but it would be really awesome :)
clarfonthey commented on 2022-05-05 15:46 (UTC)
Would you be willing to add
aarch64
to the list of supported architectures? I haven't had any problems building for it and it would be useful to not have to locally patch it.cajm commented on 2021-12-25 18:04 (UTC) (edited on 2021-12-27 00:42 (UTC) by cajm)
@jonathon Got it. The problem with calling
make
is that sometimes theCMAKE_GENERATOR
environment variable set toNinja
, making CMake generate abuild.ninja
instead of aMakefile
. Usingcmake --build
(as demonstrated in the AUR CMake packaging guidelines detects whether it should callmake
orninja
based on what it generated. If you want for forcemake
usage, I suggest adding-G 'Unix Makefiles'
to thecmake
parameters. Otherwise you get an error sayingmake: *** No targets specified and no makefile found. Stop.
jonathon commented on 2021-12-22 12:02 (UTC)
@cajm, the PKGBUILD mostly follows the upstream build instructions.
cajm commented on 2021-12-02 15:03 (UTC)
Please use
cmake --build build
andcmake --install build
instead of runningmake
directly. Not everyone usesmake
as their cmake generator.tas commented on 2021-11-12 04:50 (UTC)
The Zig repository has been moved to 'https://github.com/ziglang/zig.git'. While GitHub still forwards the old path to the new one, the old organization name (and repository path) is now up for grabs, so please update this package to the new URL when you can.
diegovsky commented on 2021-04-28 03:58 (UTC)
A patch to use llvm 12 is needed. This isn't building rn. I guess we wait for llvm 12 to reach pacman's repos or we patch to use the AUR llvm.
wbthomason commented on 2020-06-26 14:21 (UTC)
@tiehuis: Thanks!
katt commented on 2020-06-26 12:40 (UTC) (edited on 2020-06-26 12:41 (UTC) by katt)
The new pkgver no longer complies with the VCS package guidelines. https://wiki.archlinux.org/index.php/VCS_package_guidelines#The_pkgver()_function
It should at the very least contain the revision
« First ‹ Previous 1 2 3 4 5 Next › Last »