-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
45 lines (28 loc) · 1 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Info
====
Run 'sh bootstrap' first if starting with a fresh checkout.
General
=======
./configure
make
With a local Timbl installation:
./configure --prefix=/home/pberck/local --with-timbl=/home/pberck/local
make
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/pberck/local/lib
If Timbl has been installed system-wide, the configure script should be
able to find it without the --with-timbl invocation.
Timbl support can be explicitly disabled by specifying --without-timbl. You
will be left with a Wopr which can create data sets and run an n-gram
language mode.
OS X
====
./configure --with-timbl=/Users/pberck/install/
Something like this might be needed:
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/usr/local/Cellar/icu4c/50.1/lib
Debian
======
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
seems to be needed when the libraries are installed in the default
place. If not, the following is needed (with the correct path filled
in):
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/pberck/local/lib