github的一些开源项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
2.9 KiB

  1. PCRE2-CONFIG(1) General Commands Manual PCRE2-CONFIG(1)
  2. NAME
  3. pcre2-config - program to return PCRE2 configuration
  4. SYNOPSIS
  5. pcre2-config [--prefix] [--exec-prefix] [--version]
  6. [--libs8] [--libs16] [--libs32] [--libs-posix]
  7. [--cflags] [--cflags-posix]
  8. DESCRIPTION
  9. pcre2-config returns the configuration of the installed PCRE2 libraries
  10. and the options required to compile a program to use them. Some of the
  11. options apply only to the 8-bit, or 16-bit, or 32-bit libraries, re-
  12. spectively, and are not available for libraries that have not been
  13. built. If an unavailable option is encountered, the "usage" information
  14. is output.
  15. OPTIONS
  16. --prefix Writes the directory prefix used in the PCRE2 installation
  17. for architecture independent files (/usr on many systems,
  18. /usr/local on some systems) to the standard output.
  19. --exec-prefix
  20. Writes the directory prefix used in the PCRE2 installation
  21. for architecture dependent files (normally the same as --pre-
  22. fix) to the standard output.
  23. --version Writes the version number of the installed PCRE2 libraries to
  24. the standard output.
  25. --libs8 Writes to the standard output the command line options re-
  26. quired to link with the 8-bit PCRE2 library (-lpcre2-8 on
  27. many systems).
  28. --libs16 Writes to the standard output the command line options re-
  29. quired to link with the 16-bit PCRE2 library (-lpcre2-16 on
  30. many systems).
  31. --libs32 Writes to the standard output the command line options re-
  32. quired to link with the 32-bit PCRE2 library (-lpcre2-32 on
  33. many systems).
  34. --libs-posix
  35. Writes to the standard output the command line options re-
  36. quired to link with PCRE2's POSIX API wrapper library
  37. (-lpcre2-posix -lpcre2-8 on many systems).
  38. --cflags Writes to the standard output the command line options re-
  39. quired to compile files that use PCRE2 (this may include some
  40. -I options, but is blank on many systems).
  41. --cflags-posix
  42. Writes to the standard output the command line options re-
  43. quired to compile files that use PCRE2's POSIX API wrapper
  44. library (this may include some -I options, but is blank on
  45. many systems).
  46. SEE ALSO
  47. pcre2(3)
  48. AUTHOR
  49. This manual page was originally written by Mark Baker for the Debian
  50. GNU/Linux system. It has been subsequently revised as a generic PCRE2
  51. man page.
  52. REVISION
  53. Last updated: 28 September 2014
  54. PCRE2 10.00 28 September 2014 PCRE2-CONFIG(1)