Skip to content

Commit 90c2d82

Browse files
Merge pull request #5 from CACI-International/hide_symbols
Expose hide_symbols feature
2 parents 3a8dabd + 722d582 commit 90c2d82

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

bazel/MODULE.bazel.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bazel/docs/features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
| Feature | Target | Description |
44
| ------- | ------ | ----------- |
55
| `debug_symbols` | `//feature:debug_symbols` | Generage debug information |
6+
| `hide_symbols` | `//feature:hide_symbols` | Set hidden symbol visibility |
67
| `strip_unused_dynamic_libs` | `//feature:strip_unused_dynamic_libs` | Don't link against dynamic libraries that aren't referenced by any symbols |
78
| `thinlto` | `//feature:thinlto` | Link with ThinLTO (incremental link time optimization) |
89
| `coverage` | `//feature:coverage` | Compile with instrumentation for code coverage |

bazel/feature/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ filegroup(
1111

1212
FEATURES = [
1313
"//feature/misc:debug_symbols",
14+
"//feature/misc:hide_symbols",
1415
"//feature/misc:strip_unused_dynamic_libs",
1516
"//feature/misc:thinlto",
1617
"//feature/misc:coverage",

bazel/feature/doc.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ def _std_doc(std):
1010

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

0 commit comments

Comments
 (0)