Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
Android.mk | 24-Aug-2016 | 1.5K | |
AUTHORS | 24-Aug-2016 | 379 | |
benchlog/ | 24-Aug-2016 | ||
CONTRIBUTORS | 24-Aug-2016 | 1.3K | |
doc/ | 24-Aug-2016 | ||
lib/ | 24-Aug-2016 | ||
libre2.symbols | 24-Aug-2016 | 281 | |
libre2.symbols.darwin | 24-Aug-2016 | 273 | |
LICENSE | 24-Aug-2016 | 1.5K | |
Makefile | 24-Aug-2016 | 8.1K | |
MODULE_LICENSE_BSD | 24-Aug-2016 | 0 | |
re2/ | 24-Aug-2016 | ||
README | 24-Aug-2016 | 554 | |
README.android | 24-Aug-2016 | 606 | |
README.version | 24-Aug-2016 | 93 | |
runtests | 24-Aug-2016 | 267 | |
testinstall.cc | 24-Aug-2016 | 487 | |
ucs2.diff | 24-Aug-2016 | 18.8K | |
util/ | 24-Aug-2016 |
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
1 URL: https://re2.googlecode.com/files/re2-20130115.tgz 2 Version: 20130115 3 BugComponent: 14890 4