MyCC downloads
Binary packages |
0.8.1-alpha |
Linux (Intel libc6 systems, static) (2.9M) |
Download |
0.8.1-alpha |
Windows 95/98/NT/2000/XP (5.5M) |
Download |
Source downloads |
0.8.1-alpha |
Source tarball (300K) |
Download |
|
Installing MyCC
Building MyCC
You need the following tools to create a MyCC binary from the source
distribution:
Back to top
Notes on QT
It is highly recommended that you compile QT with the following options
enabled:
-thread
-shared
The source distribution of MyCC assumes you have compiled QT with the
above settings. If QT was compiled differently, you will have to
modify MyCC.pro.in and the generated Makefile in order to compile
MyCC correctly.
You probably also want to add the following options to fully enable
graphics support in MyCC:
-qt-gif
-qt-imgfmt-png
-qt-imgfmt-jpeg
-qt-imgfmt-mng
Our statically built binary links against QT compiled in the with the
following configure arguments:
-static
-qt-gif
-thread
-no-stl
-qt-imgfmt-png
-qt-imgfmt-jpeg
-qt-imgfmt-mng
For more information on building the QT library, read the "Installation"
section of the QT manual.
Back to top
Compiling MyCC under Linux/Unix
The basic commands you must execute to install a *MyCC* source
distribution are:
shell> gunzip < mycc-VERSION.tar.gz | tar -xvf -
shell> cd mycc-VERSION
shell> ./configure
shell> make
For a list of possible configure options type:
shell> ./configure --help
Back to top
Compiling MyCC under Microsoft Windows
The basic steps for compiling *MyCC* under a Windows environment
are:
Back to top
Linux Binary Installation
To install a binary distribution, follow the steps below:
- Obtain a distribution file from one of the sites listed in *Note
Getting MySQL: Getting MySQL.
MyCC binary distributions are provided as compressed `tar'
archives and have names like `mycc-VERSION-OS.tar.gz', where
`VERSION' is a number (for example, `0.8.1'), and `OS' indicates
the type of operating system for which the distribution is intended
(for example, `pc-linux-gnu-i586').
- Pick the directory under which you want to unpack the
distribution, and move into it. In the example below, we unpack
the distribution under `/usr/local' and create a directory
`/usr/local/mycc' into which MyCC is installed. (The following
instructions therefore assume you have permission to create files
in `/usr/local'. If that directory is protected, you will need to
perform the installation as `root'.)
- Change into the intended installation directory:
shell> cd /usr/local
- Unpack the distribution and create the installation directory:
shell> gunzip < /path/to/mycc-VERSION-OS.tar.gz | tar xvf -
shell> ln -s mycc-VERSION-OS mycc
The first command creates a directory named `mycc-VERSION-OS'.
The second command makes a symbolic link to that directory. This
lets you refer more easily to the installation directory as
`/usr/local/mycc'.
- Change into the installation directory:
shell> cd mycc
After everything has been unpacked and installed, you should now be
able to execute MyCC and test your distribution.
You can start MyCC with the following command:
shell> /usr/local/mycc/MyCC
NOTE: MyCC is a Graphical GUI Client. This means you will need to be
running in an X environment before starting MyCC with the above
command.
Back to top
Windows Binary Installation
To install a binary distribution under Windows, follow the steps below:
- Obtain a Windows distribution file from one of the sites listed in
*Note Getting MySQL: Getting MySQL.
MyCC binary distributions for Windows are provided as compressed
`zip' archives and have names like `mycc-VERSION-OS.zip', where
`VERSION' is a number (for example, `0.8.1'), and `OS' indicates
the type of operating system for which the distribution is intended
(for example, `pc-linux-gnu-i586').
- Unzip the Windows binary distribution to a directory of its own.
- Click on `Setup.exe` and follow the installation wizard.
Back to top
|