Compare commits

..

2 commits

Author SHA1 Message Date
2edd93e04a
fix: move kanagawa-lotus theme to light themes collection 2025-09-30 10:10:52 +02:00
716fd480cb
fix: enable llvm by default for debug builds
The native backends for zig are still very slow. Enable llvm by default so debug
builds are generally useable. For quick builds, explicitly disable llvm with
`-Duse_llvm=false`.
2025-09-30 09:55:18 +02:00
2 changed files with 5 additions and 2 deletions

View file

@ -582,6 +582,9 @@ pub fn build_exe(
if (use_llvm) |value| {
exe.use_llvm = value;
exe.use_lld = value;
} else {
exe.use_llvm = true;
exe.use_lld = true;
}
if (pie) |value| exe.pie = value;
exe.root_module.addImport("build_options", options_mod);

View file

@ -22,8 +22,8 @@
.hash = "thespian-0.0.1-owFOjtseBgA9KTb5dsA3KMcKj6sbXskYs3hxjHs4z3ub",
},
.themes = .{
.url = "https://github.com/neurocyte/flow-themes/releases/download/master-0efb55c633a836594b74881e88bf73750e5287df/flow-themes.tar.gz",
.hash = "N-V-__8AAK88IwAApi02FoN2ycGAkXwiw1lTOOSGdxMm0TXr",
.url = "https://github.com/neurocyte/flow-themes/releases/download/master-f1074c46d934ec171e44b1c3a1fdfc1ef38e2667/flow-themes.tar.gz",
.hash = "N-V-__8AAK88IwAuRxgh-x0ikK2KRhXCvCg8joy5mLlH0Ffk",
},
.fuzzig = .{
.url = "https://github.com/fjebaker/fuzzig/archive/4251fe4230d38e721514394a485db62ee1667ff3.tar.gz",