Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bazel/MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions bazel/docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
| Feature | Target | Description |
| ------- | ------ | ----------- |
| `debug_symbols` | `//feature:debug_symbols` | Generage debug information |
| `hide_symbols` | `//feature:hide_symbols` | Set hidden symbol visibility |
| `strip_unused_dynamic_libs` | `//feature:strip_unused_dynamic_libs` | Don't link against dynamic libraries that aren't referenced by any symbols |
| `thinlto` | `//feature:thinlto` | Link with ThinLTO (incremental link time optimization) |
| `coverage` | `//feature:coverage` | Compile with instrumentation for code coverage |
Expand Down
1 change: 1 addition & 0 deletions bazel/feature/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ filegroup(

FEATURES = [
"//feature/misc:debug_symbols",
"//feature/misc:hide_symbols",
"//feature/misc:strip_unused_dynamic_libs",
"//feature/misc:thinlto",
"//feature/misc:coverage",
Expand Down
1 change: 1 addition & 0 deletions bazel/feature/doc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ def _std_doc(std):

FEATURES = {
"//feature:debug_symbols": "Generage debug information",
"//feature:hide_symbols": "Set hidden symbol visibility",
"//feature:strip_unused_dynamic_libs": "Don't link against dynamic libraries that aren't referenced by any symbols",
"//feature:thinlto": "Link with ThinLTO (incremental link time optimization)",
"//feature:coverage": "Compile with instrumentation for code coverage",
Expand Down
Loading