mirror of
https://github.com/gflags/gflags.git
synced 2025-04-06 05:55:05 +00:00
The gflags package contains a C++ library that implements commandline flags processing. It includes built-in support for standard types such as string and the ability to define flags in the source file in which they are used. Online documentation available at:
installed, but wasn't: http://code.google.com/p/google-perftools/issues/detail?id=217 This turned out to be a bug in autoconf: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=357378 The workaround is simple: check for CXX before checking for CC. This means that if g++ is installed but gcc isn't, we won't die (at cc-checking time), but I tested, and the configure script dies later. In any case, it seems unlikely someone would have a c++ compiler installed but not a c compiler. This fixes the 4 opensource projects I work on that are susceptible to this. R=iant DELTA=1437 (694 added, 694 deleted, 49 changed) Revision created by MOE tool push_codebase. MOE_MIGRATION=3222 git-svn-id: https://gflags.googlecode.com/svn/trunk@66 6586e3c6-dcc4-952a-343f-ff74eb82781d |
||
---|---|---|
doc | ||
m4 | ||
packages | ||
src | ||
vsprojects | ||
aclocal.m4 | ||
AUTHORS | ||
autogen.sh | ||
ChangeLog | ||
config.guess | ||
config.sub | ||
configure | ||
configure.ac | ||
COPYING | ||
depcomp | ||
google-gflags.sln | ||
INSTALL | ||
install-sh | ||
ltmain.sh | ||
Makefile.am | ||
Makefile.in | ||
missing | ||
NEWS | ||
README | ||
README_windows.txt |
This repository contains a C++ of the Google commandline flags module. Documentation for the C++ implementation is in doc/. The python version of gflags is now shipped seperately as it is completely independent of this module. See INSTALL for (generic) installation instructions for C++: basically ./configure && make && make install See README_windows.txt for instructions on using under windows.