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
Rename zig_library to zig_static_library to be explicit and consistent with zig_shared_library.
Clearly distinguish between link time and build time dependencies, i.e. archives or shared libraries that need to be linked against whenever the zig_*_library target is used, and object or archive dependencies that need to be bundled into the output of the zig_*_library target.
The text was updated successfully, but these errors were encountered:
Related to #15.
See ziglang/zig#19753 for further context.
Take Bazel's
cc_shared_library
rule as reference.zig_library
tozig_static_library
to be explicit and consistent withzig_shared_library
.zig_*_library
target is used, and object or archive dependencies that need to be bundled into the output of thezig_*_library
target.The text was updated successfully, but these errors were encountered: