summaryrefslogtreecommitdiffstats
path: root/rules/gflags.in
diff options
context:
space:
mode:
Diffstat (limited to 'rules/gflags.in')
-rwxr-xr-xrules/gflags.in16
1 files changed, 16 insertions, 0 deletions
diff --git a/rules/gflags.in b/rules/gflags.in
new file mode 100755
index 000000000..fc6c199e5
--- /dev/null
+++ b/rules/gflags.in
@@ -0,0 +1,16 @@
+## SECTION=system_libraries
+
+config GFLAGS
+ tristate
+ prompt "gflags"
+ select LIBC_M
+ select LIBC_PTHREAD
+ select GCCLIBS_GCC_S
+ select GCCLIBS_CXX
+ help
+ The gflags library implements commandline flags processing. As such it's
+ a replacement for getopt(). It has increased flexibility, including
+ built-in support for C++ types like string, and the ability to define
+ flags in the source file in which they're used.
+
+ See https://code.google.com/p/gflags/ for info about it.