-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathINSTALL
More file actions
46 lines (28 loc) · 1.12 KB
/
INSTALL
File metadata and controls
46 lines (28 loc) · 1.12 KB
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
45
INSTALLATION
------------
Installation should be easy; cd to the src/ directory, then type:
./configure
make install
If this went without errors or serious warnings type this to start tintin:
tt++
You might need to install the following libraries:
pcre2: pcre.org
zlib: zlib.net
gnutls: gnutls.org
If you have any trouble with installing/compiling tintin you should check out
the install section on the website.
https://tintin.mudhalla.net/install.php
If that doesn't do the trick you can ask for assistance on the forum.
TERMINAL EMULATION
------------------
In order to run tintin full featured you will need a vt100 emulator. If your
OS doesn't use one per default it's suggested to install xterm.
STATIC LINKING
--------------
This is more so a note to myself to statically link PCRE2 on Cygwin.
wget https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.44/pcre2-10.44.tar.bz2
$ tar xvf pcre2-10.44.tar.bz2
$ cd pcre2-10.44/
$ ./configure CC=i686-pc-mingw32-gcc CXX=i686-pc-mingw32-g++ --enable-jit --enable-unicode --disable-shared
$ make
$ ./configure --libdir='../pcre2-10.44' --includedir='../pcre2-10.44'