Skip to content

Commit

Permalink
fix linkmode bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-french committed Sep 26, 2023
1 parent 39801c8 commit a695eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/private/mode.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ LINKMODE_C_ARCHIVE = "c-archive"
LINKMODES = [LINKMODE_NORMAL, LINKMODE_PLUGIN, LINKMODE_C_SHARED, LINKMODE_C_ARCHIVE, LINKMODE_PIE]

# All link modes that produce executables to be run with bazel run.
LINKMODES_EXECUTABLE = [LINKMODE_NORMAL, LINKMODE_PIE]
LINKMODES_EXECUTABLE = [LINKMODE_NORMAL, LINKMODE_PIE, LINKMODE_C_SHARED]

# All link modes that require external linking and thus a cgo context.
LINKMODES_REQUIRING_EXTERNAL_LINKING = [
Expand Down

0 comments on commit a695eb6

Please sign in to comment.