Displaying 4 results from an estimated 4 matches for "manugupt1".
2014 Dec 05
3
Contributing to Xapian
On Thu, Dec 04, 2014 at 08:28:32PM -0500, Manu Gupta wrote:
> I was trying to build Han's code and was stuck here. It seems to me that
> his code is trying to generate pdf for them.
>
> Is it possible to modify the make files to stop building the documentation.
You can run the top-level configure with --disable-documentation.
Cheers,
Olly
2014 Dec 06
2
Contributing to Xapian
...cc: In member function 'void Xapian::RankList::sort_by_label()':
> ranklist.cc:108:6: error: unused variable 'fvv_size'
> [-Werror=unused-variable]
> cc1plus: all warnings being treated as errors
> make[3]: *** [ranklist.lo] Error 1
> make[3]: Leaving directory `/home/manugupt1/han/xapian/xapian-letor'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/home/manugupt1/han/xapian/xapian-letor'
> make[1]: *** [all] Error 2
> make[1]: Leaving directory `/home/manugupt1/han/xapian/xapian-letor'
>
>
> and gsoc2014-evaluation b...
2014 Dec 07
2
Contributing to Xapian
I use Ubuntu12.04, GNU Make 3.81 and I am not sure if I use some special
configure options. The commands I use after clone the repo are as follows:
cd xapian
./bootstarp
./configure
make
cd xapian-letor
aclocal -I ../xapian-core/m4
libtoolize --force
autoconf
autoheader
automake --add-missing
./configure
make
Is this normal?
2014-12-07 22:37 GMT+08:00 James Aylett <james-xapian at
2014 Dec 08
2
Contributing to Xapian
...documentation
make CXXFLAGS='-w'
and I get a different set of errors
---
ranker.cc: In member function 'std::string Xapian::Ranker::get_cwd()':
ranker.cc:80:36: error: 'getcwd' was not declared in this scope
make[3]: *** [ranker.lo] Error 1
make[3]: Leaving directory `/home/manugupt1/han/xapian/xapian-letor'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/manugupt1/han/xapian/xapian-letor'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/manugupt1/han/xapian/xapian-letor'
---
I am also trying Hanxiao's method but am not able...