Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
Android.mk | 20-Jun-2014 | 1.4K | |
AUTHORS | 20-Jun-2014 | 379 | |
benchlog/ | 20-Jun-2014 | ||
CONTRIBUTORS | 20-Jun-2014 | 1.3K | |
doc/ | 20-Jun-2014 | ||
lib/ | 20-Jun-2014 | ||
libre2.symbols | 20-Jun-2014 | 281 | |
libre2.symbols.darwin | 20-Jun-2014 | 273 | |
LICENSE | 20-Jun-2014 | 1.5K | |
Makefile | 20-Jun-2014 | 8.1K | |
MODULE_LICENSE_BSD | 20-Jun-2014 | 0 | |
re2/ | 20-Jun-2014 | ||
README | 20-Jun-2014 | 554 | |
README.android | 20-Jun-2014 | 606 | |
runtests | 20-Jun-2014 | 267 | |
testinstall.cc | 20-Jun-2014 | 487 | |
ucs2.diff | 20-Jun-2014 | 18.8K | |
util/ | 20-Jun-2014 |
1 This is the source code repository for RE2, a regular expression library. 2 3 For documentation about how to install and use RE2, 4 visit http://code.google.com/p/re2/. 5 6 The short version is: 7 8 make 9 make test 10 make install 11 make testinstall 12 13 Unless otherwise noted, the RE2 source files are distributed 14 under the BSD-style license found in the LICENSE file. 15 16 RE2's native language is C++. 17 An Inferno wrapper is at http://code.google.com/p/inferno-re2/. 18 A Python wrapper is at http://github.com/facebook/pyre2/. 19 A Ruby wrapper is at http://github.com/axic/rre2/. 20
1 Code obtained from 2 ------------------ 3 4 https://re2.googlecode.com/files/re2-20130115.tgz 5 6 Version 7 ------- 8 9 re2-20130115.tgz 10 11 Changes required to build using stlport on Android as follows (full diff) 12 ------------------------------------------------------------------------- 13 util/util.h: 14 15 44,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