mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
doc: Bazel gflags_nothreads target
This commit is contained in:
parent
78c66b3726
commit
971dd2a4fa
1 changed files with 8 additions and 1 deletions
|
@ -164,10 +164,17 @@ bind(
|
|||
name = "gflags",
|
||||
actual = "@com_github_gflags_gflags//:gflags",
|
||||
)
|
||||
|
||||
bind(
|
||||
name = "gflags_nothreads",
|
||||
actual = "@com_github_gflags_gflags//:gflags_nothreads",
|
||||
)
|
||||
</pre>
|
||||
|
||||
<p>You can then add <code>//external:gflags</code> to the <code>deps</code> section of a <code>cc_binary</code>
|
||||
or <code>cc_library</code> rule, and <code>#include "gflags/gflags.h"</code> to include it in your source code.</p>
|
||||
or <code>cc_library</code> rule, and <code>#include "gflags/gflags.h"</code> 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 <code>//external:gflags_nothreads</code> instead.</p>
|
||||
|
||||
<p>For example, see the following <code>BUILD</code> rule of the gflags/example project:</p>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue