-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathREADME
44 lines (32 loc) · 1.47 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
================================================================================
Tkrzw: a set of implementations of DBM
================================================================================
Please read the following documents.
COPYING - license
CONTRIBUTING.md - how to contribute
doc/index.xhtml - main document
(the same as https://dbmx.net/tkrzw/)
Contents of the directory tree are below.
./ - source code
./example/ - sample code for tutorial
Tkrzw is available on UNIX-like systems (Linux, Mac OS, FreeBSD, Solaris etc)
and Windows.
On Unix-like systems, GCC 7.3 or later version is required to build the
library. You can also use CLang, whose command interface is compatible with
GCC. GNU make and other standard tools are also required.
Then, run these commands. The files are installed under "/usr/local".
./configure --enable-opt-native --enable-most-features
make
make check
sudo make install
On some UNIX-like systems including FreeBSD and Solaris, "make" defaults to
bsdmake or other non-GNU make, so you might need to replace "make" with
"gmake" in the above instructions.
On Windows, Visual Studio 2019 and its C++ components are required.
Open the "x86 Native Tools Command Prompt" and then run the following
commands. The files are installed under "C:\Program Files\tkrzw".
nmake -f VCMakefile
nmake -f VCMakefile check
nmake -f VCMakefile install (run this as Administrator)
Thanks.
== END OF FILE ==