You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constnamed_install=b.step(b.fmt("{s}_install", .{key}), b.fmt("Install {s} to zig-cache/bin", .{ex.main_file}));
However the executable, by default, is installed in zig-out/bin, not zig-cache/bin.
Moreover, the user can change the destination, with the -p--prefix or --prefix-exe-dir options.
I will fix it.
By the way: is it really necessary to add an install step?
The text was updated successfully, but these errors were encountered:
Replace the description of the named_install step from
"Install {s} to zig-cache/bin" to "Copy {s} to prefix path". The latter
has been adapded from the description of the builtin install step.
Ad an empty line before the build_step variable, in order to improve
readability.
Closesratfactor#213
Replace the description of the named_install step from
"Install {s} to zig-cache/bin" to "Copy {s} to prefix path". The latter
has been adapded from the description of the builtin install step.
Ad an empty line before the build_step variable, in order to improve
readability.
Closesratfactor#213
Currently, the
named_install
step is defined as:However the executable, by default, is installed in
zig-out/bin
, notzig-cache/bin
.Moreover, the user can change the destination, with the
-p
--prefix
or--prefix-exe-dir
options.I will fix it.
By the way: is it really necessary to add an install step?
The text was updated successfully, but these errors were encountered: