You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Installing header files to ${INCLUDE_INSTALL_DIR}/tde
added another subdirectory layer that caused build failures
in certain apps such as kipi-plugins.
This partially resolves bug report 600.
(cherry picked from commit
|
13 years ago | |
---|---|---|
.. | ||
boost-compat | 13 years ago | |
docs | 15 years ago | |
tests | 13 years ago | |
CMakeLists.txt | 13 years ago | |
ConfigureChecks.cmake | 14 years ago | |
GPL_V2 | 14 years ago | |
Makefile.am | 15 years ago | |
README | 15 years ago | |
bitio.h | 14 years ago | |
bitio.tcc | 15 years ago | |
bitstream.cpp | 14 years ago | |
bitstream.h | 14 years ago | |
compat.h | 14 years ago | |
compressed.cpp | 14 years ago | |
compressed.h | 14 years ago | |
configure.in.in | 15 years ago | |
create.cpp | 14 years ago | |
create.h | 14 years ago | |
exception.cpp | 14 years ago | |
exception.h | 14 years ago | |
format.h | 15 years ago | |
ifile.cpp | 14 years ago | |
ifile.h | 14 years ago | |
index.h | 14 years ago | |
index_slow.h | 14 years ago | |
indexlib-config.in | 14 years ago | |
leafdata.cpp | 14 years ago | |
leafdata.h | 14 years ago | |
leafdatavector.cpp | 14 years ago | |
leafdatavector.h | 14 years ago | |
lockfile.cpp | 14 years ago | |
lockfile.h | 14 years ago | |
logfile.cpp | 14 years ago | |
logfile.h | 14 years ago | |
main.cpp | 14 years ago | |
manager.h | 14 years ago | |
match.cpp | 14 years ago | |
match.h | 14 years ago | |
mempool.h | 14 years ago | |
mempool.tcc | 14 years ago | |
memreference.h | 14 years ago | |
memvector.h | 14 years ago | |
memvector.tcc | 15 years ago | |
mmap_manager.cpp | 13 years ago | |
mmap_manager.h | 14 years ago | |
path.h | 14 years ago | |
pointer.h | 14 years ago | |
quotes.cpp | 14 years ago | |
quotes.h | 13 years ago | |
result.h | 14 years ago | |
slow.cpp | 14 years ago | |
slow.h | 14 years ago | |
stringarray.cpp | 14 years ago | |
stringarray.h | 14 years ago | |
stringset.cpp | 14 years ago | |
stringset.h | 14 years ago | |
thing.h | 14 years ago | |
tokenizer.cpp | 15 years ago | |
tokenizer.h | 15 years ago | |
version.h | 15 years ago |
README
WHAT'S THIS? This is indexlib, an indexing library. HOW TO USE INDEXLIB The most important files are index.h and create.h which are the programmer's interface (API). HOW TO START HACKING INDEXLIB INTERNALS 1. Understand the basics about how everything is really kept on disk and the file formats. Reading the docs in the docs/ directory should be good enough. 2. Email me (luis@luispedro.org) if you have any doubts. HOW TO DEBUG 1. Get boost (http://www.boost.org/) and install it. There are packages for most linux distros. 2. Enable debugging output (Recompile with boost, define DEBUG). 3. Run the test suite (compile test.cpp and link with indexlib and boost_unit_test). 4. If the unit tests are all OK, but you still think the code is broken, try to write a test case which catches it.