Changelog:
- minor release migrates project to zig 0.10.1
- full changelog
Differential D14194
update ncdu to 2.2.2 Authored by nazar on Jun 10 2023, 9:03 AM. Tags None Referenced Files
Details
Changelog:
run and check sizes are shown correct
Diff Detail
Event TimelineComment Actions I don't know why, this package fails on my machine. + make -j4 zig build -Drelease-fast make: *** [Makefile:15: release] Illegal instruction (core dumped) Command '['/bin/bash', '--norc', '--noprofile', '/tmp/ypkg-buildYZfqts']' returned non-zero exit status 2 [Build] build failed for ncdu 🕱 Failed to build packages Comment Actions @algent do you do =make local= with new zig eopkg?
Also hashes are different obviously.
It does look like there are some bits missing and the updated zig compiler package is borked (landed into unstable too soon). Comment Actions This now has the same issue as zig 😢: $ ncdu fish: Job 1, 'ncdu' terminated by signal SIGILL (Illegal instruction)
Comment Actions After some discussion on Matrix, adding the following to package.yml (before build) is probably cleaner (and keeps %make intact): environment: |
# Ensure ncdu is built for generic x86_64 targets
export ZIG_FLAGS="-Drelease-fast -Dcpu=baseline" |