Test / Hakurei (race detector) (push) Successful in 9m33s
Test / Sandbox (push) Successful in 5m27s
Test / Sandbox (race detector) (push) Successful in 8m21s
Test / ShareFS (push) Successful in 10m32s
Test / Create distribution (push) Successful in 1m51s
Test / Hakurei (push) Successful in 3m5s
Test / Flake checks (push) Successful in 1m28s
This change also adds a fourth stage to the bootstrap machinery, offering more correct toolchain validation that works around LLVM dynamic linking flaws. Signed-off-by: Ophestra <cat@gensokyo.uk>
25 lines
511 B
Go
25 lines
511 B
Go
package byacc {
|
|
description = "Berkeley Yacc";
|
|
website = "https://invisible-island.net/byacc";
|
|
anitya = 233;
|
|
|
|
version# = "20260126";
|
|
source = remoteTar {
|
|
url = "https://invisible-island.net/archives/byacc/"+
|
|
"byacc-"+version+".tgz";
|
|
compress = gzip;
|
|
checksum = "3IXzewZmFUW3hkFKBuweR0hUSftlI2zE0lBZf16I8oK3mFEyj51FzVv1wvA12uoC";
|
|
};
|
|
|
|
// awk dependency loop
|
|
toyboxEarly = true;
|
|
|
|
// test suite assumes writable source
|
|
writable = true;
|
|
chmod = true;
|
|
|
|
exec = make {
|
|
omitDefaults = true;
|
|
};
|
|
}
|