Skip to content

Install

Paul Wankadia edited this page Feb 3, 2016 · 33 revisions

Quick links: browse | changes

RE2 should build and run on any modern Unix clone with GCC or Clang.

git clone https://code.googlesource.com/re2
cd re2
make test
make install
make testinstall

(On BSD systems, use gmake instead of make.)

Bazel and CMake are also supported. The latter should enable generation of MSVC and Xcode projects. Patches are welcome!

For documentation on how to use RE2, see the comment at the top of re2/re2.h.

How to contribute code.

Mail re2-dev with problems.

RE2's native language is C++.
An Erlang wrapper is at https://github.com/tuncer/re2/.
An Inferno wrapper is at https://github.com/powerman/inferno-re2/.
A Node.js wrapper is at https://github.com/uhop/node-re2/ and on NPM.
An OCaml wrapper is at https://github.com/janestreet/re2/ and on OPAM.
A Perl wrapper is at https://github.com/dgl/re-engine-RE2/ and on CPAN.
A Python wrapper is at https://github.com/facebook/pyre2/.
A Ruby wrapper is at https://github.com/axic/rre2/.

Clone this wiki locally