~drizzle-developers/pkg-libinnodb/karmic

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
This is the source of the Embedded InnoDB 1.0.3.5325
====================================================

Requirements
===============================================
Zlib >= 1.2.x		Need the development header files and library
CMake 2.6 or above	for building binaries on Windows

Unix
===============================================

Some important configure options
-------------------------------
--with-atomic-ops=[intrinsics|innodb|native]. The default is "innodb" because
it's guaranteed to work on all platforms. However, if you are using GCC >= 4.1.2
you can select "intrinsics", this will improve performance for multi-threaded
applications. On Solaris >= 10 you should use "native", then InnoDB will use
the atomic_ops(3C) library functions.

By default, configure will build a shared library. If you want a static build
you will need to set --disable-shared.

Instructions for compiling:
---------------------------

1. ./configure

2. make

3. make install

4. Enjoy!

Windows
===============================================

Instructions for compiling:
---------------------------

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!