-
Notifications
You must be signed in to change notification settings - Fork 7
/
README
76 lines (50 loc) · 2.33 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
This is the source of the Embedded InnoDB 1.0.6.6750
====================================================
Requirements
===============================================
Zlib >= 1.2.x Need the development header files and library
CMake 2.6 or above for building binaries on Windows
Unix
===============================================
Instructions for compiling and installing:
------------------------------------------
1. ./configure
If you want to disable support for compressed tables you can run
configure with the following command line argument:
./configure --disable-compression
By default, support for compressed tables is enabled.
If you want to disable support for shared libraries you can run
configure with the following command line argument:
./configure --disable-shared
By default, it will build both shared and static libraries
The configure script attempts to select the optimal latching implementation
for your configuration, if not explicitly set on the configure command line.
If you need to force a particular selection you can use the following
command line argument to select:
--with-atomic-ops= one of [gcc_builtins|solaris|innodb]
2. make
3. make install
4. Enjoy!
Windows
===============================================
Instructions for compiling and installing:
------------------------------------------
1. cmake -G <generator-name>
The generator could be one of the followings:
Visual Studio 7 = Generates Visual Studio .NET 2002 project files.
Visual Studio 7 .NET 2003 = Generates Visual Studio .NET 2003 project files
Visual Studio 8 2005 = Generates Visual Studio .NET 2005 project files
Visual Studio 8 2005 Win64 = Generates Visual Studio .NET 2005 Win64 project files.
Visual Studio 9 2008 = Generates Visual Studio 9 2008 project files.
Visual Studio 9 2008 Win64 = Generates Visual Studio 9 2008 Win64 project files
2. start Visual Studio, and open solution file EMBEDDED_INNODB.sln
3. build ALL_BUILD
4. build INSTALL
5. Enjoy!
See the online documentation for more detailed instructions:
http://www.innodb.com/doc/embedded_innodb-1.0/
For more information about InnoDB, visit:
http://www.innodb.com
Please report any problems or issues with the software in the InnoDB Forums:
http://forums.innodb.com/
Thank you for using Embedded InnoDB!