Skip to content

Commit

Permalink
Add .wasm cc dynamic library extension
Browse files Browse the repository at this point in the history
Similar to bazelbuild#16091 except also allow the `.wasm` extension for dynamic libraries.

Closes bazelbuild#17374.

PiperOrigin-RevId: 507668339
Change-Id: Id85f98bb804e573e5f93a922b67baf75a22baf16
  • Loading branch information
zaucy committed Feb 8, 2023
1 parent c7a503a commit 71c8cb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
public enum ArtifactCategory {
STATIC_LIBRARY("lib", ".a", ".lib"),
ALWAYSLINK_STATIC_LIBRARY("lib", ".lo", ".lo.lib"),
DYNAMIC_LIBRARY("lib", ".so", ".dylib", ".dll"),
DYNAMIC_LIBRARY("lib", ".so", ".dylib", ".dll", ".wasm"),
EXECUTABLE("", "", ".exe", ".wasm"),
INTERFACE_LIBRARY("lib", ".ifso", ".tbd", ".if.lib", ".lib"),
PIC_FILE("", ".pic"),
Expand Down

0 comments on commit 71c8cb1

Please sign in to comment.