README.libyuv 1.2 KB

1234567891011121314151617181920212223242526272829
  1. URL: https://github.com/gflags/gflags
  2. Version: 2.1.2
  3. License: New BSD
  4. License File: LICENSE
  5. Description:
  6. The gflags package contains a library that implements commandline
  7. flags processing. As such it's a replacement for getopt(). It has
  8. increased flexibility, including built-in support for C++ types like
  9. string, and the ability to define flags in the source file in which
  10. they're used.
  11. Local Modifications: None
  12. How to update platform configuration files:
  13. The gen/ directory contains pre-generated configuration header files.
  14. Historically, all operating systems and architectures have generated
  15. similar configurations except for Windows. This is why there's only
  16. posix and win directories below gen/.
  17. When rolling gflags to a newer version, it's a good idea to check if
  18. new configuration files needs to be generated as well.
  19. Do this by running ./configure in the newly checked out version of
  20. gflags. Then diff the generated files with the ones below gen/.
  21. If you notice a diff, update the files with the updated ones.
  22. If you suspect platform dependend changes other than Windows, you'll
  23. have to checkout gflags on the other platforms as well and run
  24. ./configure there too.