search for: lxapian

Displaying 19 results from an estimated 19 matches for "lxapian".

Did you mean: xapian
2006 Oct 02
2
xapian-config --libs output on Suse 10.1
On Suse 10.1, xapian-config --libs outputs the following: -L/usr/lib -lxapian -L/usr/lib -lstdc++ -lm -lgcc_s -lc -lgcc_s -lm -lgcc_s -lc -lgcc_s The usual output on other linuxes seems to be like -L/where/is/lib/ -lxapian This causes a problem when trying to perform a static link with xapian, because there does not seem to exist a libgcc_s.a Actually, I am not quite s...
2015 Aug 07
1
xapian 1.2.21 / MSYS-1.0.11.exe
...$ quickstartindex proverbs \ > "Don't look a gift horse in the mouth" \ > look gift horse mouth $ quickstartsearch proverbs look Performing query `Xapian::Query(look)' 1 results found Document ID 2 100% [Don't look a gift horse in the mouth] $ I am surprised that -lxapian-core is listed in /c/xapian/lib/pkgconfig/xapian-core.pc $ cat xapian-core.pc prefix=/c/xapian exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: The Xapian Probabilistic Information Retrieval Library Description: Xapian is an Open Source Probabilistic Information...
2014 Feb 13
2
A beginner in "Posting list encoding improvements"
...pian::WritableDatabase::~WritableDatabase()' demo2.cc:(.text+0x98): undefined reference to `Xapian::WritableDatabase::~WritableDatabase()' collect2: ld ?? 1 and hurricanetong at hurricanetong-VirtualBox:~/workspace$ xapian-config --cxxflags --libs -I/usr/local/include -L/usr/local/lib -lxapian ------------------ HurricaneTong,Second Year Undergraduate, School of Computer Science, Fudan University, China. ------------------ Original ------------------ From: "Ralf Mattes";<rm at seid-online.de>; Date: Wed, Feb 12, 2014 11:02 PM To: "James Aylett"&l...
2015 Oct 28
2
Trying to get Search::Xapian perl module to compile on win32
...s/kb/131313. Specifically using dumpbin /exports to create a definition file and then feeding the definition file to lib /def to create the .lib and .exp files. The call to generate the Makefile on win32 is now something like: perl Makefile.PL CXX=cl.exe INC=-IC:\Install\include " LIBS=-lxapian-22 -lzlib" XAPIAN_VERSION=1.2.21 "CXXFLAGS=-EHsc -TP" Now when I run nmake, it gets past the compile portion and dies when linking with errors like: Xapian.obj : error LNK2001: unresolved external symbol "public: __thiscall Xapian::WritableDatabase: :WritableDatabase(class Xa...
2014 Feb 12
2
A beginner in "Posting list encoding improvements"
On 12 Feb 2014, at 08:55, Olly Betts <olly at survex.com> wrote: > For GSoC projects, I'd recommend developing on Linux, or another > Unix-like platform. I think everyone who has so far expressed an > interest in mentoring uses Linux or Mac OS X, so we're much better > placed to help with development on such platforms. If you're on Windows, the way of doing this
2014 Feb 12
2
A beginner in "Posting list encoding improvements"
...rote: > I seem to run into some trouble. > I succeeded in building the source code of Xapian in ubuntu, > but when I write a demo c++ application > > [snip] > I can't get it built. > > > hurricanetong at hurricanetong-VirtualBox:~/workspace$ g++ -L/usr/local/lib -lxapian-1.3 BuildIndexDemo.cpp Hmmm, where did you get this invocation from? This should be: g++ `xapian-config --cxxflags --libs` BuildIndexDemo.cpp xapian-config knbow how to link xapian applications (and libxapian-1.3 looks strange). > > In /usr/local/lib, there are libxapian-1.3.so, libxapi...
2019 Jan 04
3
Solr -> Xapian ?
I hope you are aware that "linking with Xapian" requires somewhat more work than just -lxapian in linker? If you or someone feels like writing fts_xapian, go for it. Aki > On 04 January 2019 at 08:20 Joan Moreau via dovecot <dovecot at dovecot.org> wrote: > > > What about consedering linking Dovecot with Xapian librairies instead of > going to nightmare Solr ? >...
2019 Jan 04
2
Solr -> Xapian ?
...e me about the core structure (mandatory > funcitons, etc..) of a typical Dovecot FTS plugin > > > > > > > > On 2019-01-04 17:20, Aki Tuomi wrote: > > I hope you are aware that "linking with Xapian" requires somewhat > > more work than just -lxapian in linker? If you or someone feels > > like writing fts_xapian, go for it. > > > > Aki > > > > > > > On 04 January 2019 at 08:20 Joan Moreau via dovecot < > > > dovecot at dovecot.org> wrote: > > > > > > > > > Wh...
2005 Mar 28
4
Problem with bindings and MinGW
...on['XAPIAN_BASE'] except KeyError: print "warning: XAPIAN_BASE not set, use xapian-config to determine it" # please do not change the lines below EXTRA_LDFLAGS = ( "-v -Wl,--enable-runtime-pseudo-reloc " "-L%(xapianbase)s/lib -lstdc++ " "-lxapianqueryparser -lxapian " % {'xapianbase': XAPIAN_BASE}).split() EXTRA_CFLAGS = ( "-I%(xapianbase)s/include " % {'xapianbase': XAPIAN_BASE}).split() DATA_FILES = [] if sys.platform == "win32": df = ( "%(xapianbase)s/bin/libxapianque...
2005 Mar 28
4
Problem with bindings and MinGW
...on['XAPIAN_BASE'] except KeyError: print "warning: XAPIAN_BASE not set, use xapian-config to determine it" # please do not change the lines below EXTRA_LDFLAGS = ( "-v -Wl,--enable-runtime-pseudo-reloc " "-L%(xapianbase)s/lib -lstdc++ " "-lxapianqueryparser -lxapian " % {'xapianbase': XAPIAN_BASE}).split() EXTRA_CFLAGS = ( "-I%(xapianbase)s/include " % {'xapianbase': XAPIAN_BASE}).split() DATA_FILES = [] if sys.platform == "win32": df = ( "%(xapianbase)s/bin/libxapianque...
2015 Oct 29
4
Trying to get Search::Xapian perl module to compile on win32
...pecifically using dumpbin /exports to create a definition file and then feeding the definition file to lib /def to create the .lib and .exp files. > > The call to generate the Makefile on win32 is now something like: > perl Makefile.PL CXX=cl.exe INC=-IC:\Install\include " LIBS=-lxapian-22 -lzlib" XAPIAN_VERSION=1.2.21 "CXXFLAGS=-EHsc -TP" Presumably you're cross-compiling with GCC? > Now when I run nmake, it gets past the compile portion and dies when linking with errors like: > Xapian.obj : error LNK2001: unresolved external symbol "public: __thi...
2014 Feb 12
2
A beginner in "Posting list encoding improvements"
On 12 Feb 2014, at 14:58, "Hurricane Tong" <zhangshangtong.cpp at qq.com> wrote: > hurricanetong at hurricanetong-VirtualBox:~/workspace$ g++ `xapian-config --cxxflags --libs` BuildIndexDemo.cpp You want to use xapian-config-1.3 here, not xapian-config (which will be the installed version, not the trunk version you built). I've just built trunk (on Mac OS, admittedly),
2011 Apr 18
0
Who can help me?I got a problem when I make ”Xapian-bindings“
.../bin/bash ../libtool --tag=CXX --mode=link g++ -fno-strict-aliasing -Wall -Wno-unused -Wno-uninitialized -fvisibility=hidden -I/usr/local/include -g -O2 -avoid-version -module -shrext ".so" -o _xapian.la -rpath /usr/lib/python2.6/dist-packages/xapian xapian_wrap.lo -L/usr/local/lib -lxapian -lstdc++ libtool: link: g++ -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/i486-linux-gnu/4.4.3/../../../../lib/crti.o /usr/lib/gcc/i486-linux-gnu/4.4.3/crtbeginS.o .libs/xapian_wrap.o -L/usr/local/lib /usr/local/lib/libxapian.so -lz -luuid -L/usr/lib/gcc/i486-linux-gnu/4.4.3 -L/usr/lib/gcc/i486-linu...
2006 Jul 11
1
Building Search_Xapian under FreeBSD
Hi all. I can't buil perl bindings for Xapian under FreeBSD for version 0.9.6 Here is something about system and error messages: uname -a: FreeBSD xxx 4.11-RELEASE FreeBSD 4.11-RELEASE xapian-config --cxxflags: -I/usr/local/include xapian-config --libs: -L/usr/local/lib -lxapian xapian-config --version: xapian 0.9.6 # perl Makefile.PL Checking if your kit is complete... Looks good Writing Makefile for Search::Xapian # make g++ -c -I/usr/local/include -DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -p...
2019 Jan 04
0
Solr -> Xapian ?
Why not, but please guide me about the core structure (mandatory funcitons, etc..) of a typical Dovecot FTS plugin On 2019-01-04 17:20, Aki Tuomi wrote: > I hope you are aware that "linking with Xapian" requires somewhat more work than just -lxapian in linker? If you or someone feels like writing fts_xapian, go for it. > > Aki > > On 04 January 2019 at 08:20 Joan Moreau via dovecot <dovecot at dovecot.org> wrote: > > What about consedering linking Dovecot with Xapian librairies instead of > going to nightmare Sol...
2019 Jan 04
0
Solr -> Xapian ?
...Moreau via dovecot: > > Why not, but please guide me about the core structure (mandatory funcitons, etc..) of a typical Dovecot FTS plugin > > On 2019-01-04 17:20, Aki Tuomi wrote: > I hope you are aware that "linking with Xapian" requires somewhat more work than just -lxapian in linker? If you or someone feels like writing fts_xapian, go for it. > > Aki > > On 04 January 2019 at 08:20 Joan Moreau via dovecot <dovecot at dovecot.org> wrote: > > What about consedering linking Dovecot with Xapian librairies instead of > going to nightmare Sol...
2005 Sep 12
2
Compiling xapian-bindings-0.9.2 on OpenBSD 3.7
.../include -I/usr/local/src/xapian-core-0.9.2/extra -o _xapian.la -rpath /usr/local/lib/python2.3/site-packages -avoid-version -module -no-undefined xapian_wrap.lo /usr/local/src/xapian-core-0.9.2/libxapian.la g++ -shared -fPIC -DPIC .libs/xapian_wrap.o -L/usr/local/src/xapian-core-0.9.2/.libs -lxapian -o .libs/_xapian.so creating _xapian.la (cd .libs && rm -f _xapian.la && ln -s ../_xapian.la _xapian.la) cp `test -f modern/xapian.py || echo './'`modern/xapian.py xapian.py PYTHONPATH=".:.libs" /usr/local/bin/python -c "import xapian" /usr/local/bin/py...
2014 Feb 13
2
回复: A beginner in "Posting list encoding improvements"
...base()' > demo2.cc:(.text+0x98): undefined reference to `Xapian::WritableDatabase::~WritableDatabase()' > collect2: ld ?? 1 > > and > > hurricanetong at hurricanetong-VirtualBox:~/workspace$ xapian-config --cxxflags --libs > -I/usr/local/include > -L/usr/local/lib -lxapian This works for me on Debian unstable with a locally installed xapian-core 1.2.17, which I built using: $ tar xf xapian-core-1.2.17.tar.xz $ cd xapian-core-1.2.17 $ ./configure [...] $ make -sj8 # quieter build, 8-way parallel [...] $ sudo make install [...] And then: $ g++ `xapian-config --cxxf...
2019 Jan 02
3
Solr
On Wed, 2019-01-02 at 00:59 -0800, M. Balridge wrote: > > The main problem is : After some time of indexing from Dovecot, Dovecot > > returns errors (invalid SID, etc...) and Solr return "out of range > > indexes" errors > > I've been watching the progress of this thread with no small concern, mainly > because I've been tasked with providing a