From 971dd2a4fadac9cdab174c523c22df79efd63aa5 Mon Sep 17 00:00:00 2001 From: Andreas Schuh Date: Fri, 25 Nov 2016 18:48:27 +0000 Subject: [PATCH] doc: Bazel gflags_nothreads target --- index.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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.

+or 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: