Displaying 2 results from an estimated 2 matches for "all_pos".
Did you mean:
all_post
2014 Apr 13
2
Adding an external library to Xapian
...+ exit(0);
+ }
+ if (strcmp(argv[1], "--help") == 0) {
+ rc = 0;
+ }
+ }
+ cout << "Usage: " << argv[0] << " PATH_TO_DATABASE QUERY [-- [DOCID...]]"
+ << endl;
+ exit(rc);
+ }
+ // Trying out WordNet stuff.
+ // cout << ALL_POS << ALLSENSES << endl;
+ // char *syns = findtheinfo(argv[2], ALL_POS, 23, ALLSENSES);
+ // cout << syns << endl;
// Open the database for searching.
Xapian::Database db(argv[1]);
+
// Start an enquire session.
Xapian::Enquire enquire(db);
@@ -59,18...
2014 Apr 13
2
Adding an external library to Xapian
My code is not on Github. I am using the tarball as of now. The following
it the error that occurred:
http://pastebin.com/cVJrjUZX
On Sun, Apr 13, 2014 at 8:16 PM, James Aylett <james-xapian at tartarus.org>wrote:
> On 13 Apr 2014, at 15:37, Pallavi Gudipati <pallavigudipati at gmail.com>
> wrote:
>
> > A linker error is encountered even after following the above