diff --git a/index.html b/index.html index 5dcc4b6..e0afb47 100644 --- a/index.html +++ b/index.html @@ -164,10 +164,17 @@ bind( name = "gflags", actual = "@com_github_gflags_gflags//:gflags", ) + +bind( + name = "gflags_nothreads", + actual = "@com_github_gflags_gflags//:gflags_nothreads", +)
You can then add //external:gflags
to the deps
section of a cc_binary
-or cc_library
rule, and #include "gflags/gflags.h"
to include it in your source code.
cc_library
rule, and #include "gflags/gflags.h"
to include it in your source code.
+This use the shared gflags library with multi-threading enabled. In order to use the single-threaded shared
+gflags library, use the external dependency //external:gflags_nothreads
instead.
For example, see the following BUILD
rule of the gflags/example project: