Name | Date | Size | |
---|---|---|---|
.. | 21-Dec-2017 | 12 KiB | |
Android.mk | 21-Dec-2017 | 1.5 KiB | |
AUTHORS | 21-Dec-2017 | 379 | |
benchlog/ | 21-Dec-2017 | 4 KiB | |
CONTRIBUTORS | 21-Dec-2017 | 1.3 KiB | |
doc/ | 21-Dec-2017 | 4 KiB | |
lib/ | 21-Dec-2017 | 4 KiB | |
libre2.symbols | 21-Dec-2017 | 281 | |
libre2.symbols.darwin | 21-Dec-2017 | 273 | |
LICENSE | 21-Dec-2017 | 1.5 KiB | |
Makefile | 21-Dec-2017 | 8.1 KiB | |
MODULE_LICENSE_BSD | 21-Dec-2017 | 0 | |
re2/ | 21-Dec-2017 | 4 KiB | |
README | 21-Dec-2017 | 554 | |
README.android | 21-Dec-2017 | 606 | |
README.version | 21-Dec-2017 | 93 | |
runtests | 21-Dec-2017 | 267 | |
testinstall.cc | 21-Dec-2017 | 487 | |
ucs2.diff | 21-Dec-2017 | 18.8 KiB | |
util/ | 21-Dec-2017 | 4 KiB |
README
1This is the source code repository for RE2, a regular expression library. 2 3For documentation about how to install and use RE2, 4visit http://code.google.com/p/re2/. 5 6The short version is: 7 8make 9make test 10make install 11make testinstall 12 13Unless otherwise noted, the RE2 source files are distributed 14under the BSD-style license found in the LICENSE file. 15 16RE2's native language is C++. 17An Inferno wrapper is at http://code.google.com/p/inferno-re2/. 18A Python wrapper is at http://github.com/facebook/pyre2/. 19A Ruby wrapper is at http://github.com/axic/rre2/. 20
README.android
1Code obtained from 2------------------ 3 4https://re2.googlecode.com/files/re2-20130115.tgz 5 6Version 7------- 8 9re2-20130115.tgz 10 11Changes required to build using stlport on Android as follows (full diff) 12------------------------------------------------------------------------- 13util/util.h: 14 1544,53c44 16< #if defined(ANDROID) 17< 18< #if defined(_STLPORT_VERSION) 19< #include <unordered_set> // using stlport 20< #else 21< #include <tr1/unordered_set> // using gnustl 22< #endif 23< using std::tr1::unordered_set; 24< 25< #elif defined(__GNUC__) && !defined(USE_CXX0X) 26--- 27> #if defined(__GNUC__) && !defined(USE_CXX0X) 28 29
README.version
1URL: https://re2.googlecode.com/files/re2-20130115.tgz 2Version: 20130115 3BugComponent: 14890 4