Updated Branches: refs/heads/master 4087c715d -> 3797efe0c
Installation instructions for C library Project: http://git-wip-us.apache.org/repos/asf/lucy/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/3797efe0 Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/3797efe0 Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/3797efe0 Branch: refs/heads/master Commit: 3797efe0c69a7fcfc4ec6736ab7de4fc0ecee7c0 Parents: 4087c71 Author: Nick Wellnhofer <[email protected]> Authored: Thu Mar 14 16:51:32 2013 +0100 Committer: Nick Wellnhofer <[email protected]> Committed: Thu Mar 14 16:51:32 2013 +0100 ---------------------------------------------------------------------- c/INSTALL | 15 +++++++++++++++ c/README | 26 -------------------------- 2 files changed, 15 insertions(+), 26 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy/blob/3797efe0/c/INSTALL ---------------------------------------------------------------------- diff --git a/c/INSTALL b/c/INSTALL new file mode 100644 index 0000000..31a0a6f --- /dev/null +++ b/c/INSTALL @@ -0,0 +1,15 @@ +Build instructions for the Apache Lucy C library +================================================ + +When building under UNIX and derivates run: + +$ ./configure +$ make +$ make test + +When building under Windows with MSVC run: + +$ configure.bat +$ nmake +$ nmake test + http://git-wip-us.apache.org/repos/asf/lucy/blob/3797efe0/c/README ---------------------------------------------------------------------- diff --git a/c/README b/c/README deleted file mode 100644 index 0d3f357..0000000 --- a/c/README +++ /dev/null @@ -1,26 +0,0 @@ -The "c" directory contains the C host language implementation of Apache Lucy. -See the DevGuide for an overview of Lucy's layers: - - http://lucy.apache.org/docs/perl/Lucy/Docs/DevGuide.html - -Most of the C files within the "c/src" directory contain stubs for -routines whose interfaces are defined within "trunk/core". - - core/src/Lucy/Index/Inverter.cfh # Declares interface. - core/src/Lucy/Index/Inverter.c # all except Invert_Doc() - example-lang/src/Lucy/Index/Inverter.c # only Invert_Doc() - -Once all the stubs have been implemented correctly, Lucy will theoretically -build and pass its tests. - -================================================================================ - HACKING -================================================================================ - -The build system for the C host language is in development. Get started with: - - % make - % make test - - -
