diff options
| author | Dave Chapman <dave@dchapman.com> | 2005-02-16 11:02:11 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2005-02-16 11:02:11 +0000 |
| commit | 3bd167771d23edbfcf11ea4d5f0f75faf53af0c9 (patch) | |
| tree | 8caa153a8c30654e7488cbc50eaa650e6c43fe72 /apps/codecs/liba52/INSTALL | |
| parent | 1f9610d43cefc10a1e47924ad65ce0f78c63bc66 (diff) | |
| download | rockbox-3bd167771d23edbfcf11ea4d5f0f75faf53af0c9.zip rockbox-3bd167771d23edbfcf11ea4d5f0f75faf53af0c9.tar.gz rockbox-3bd167771d23edbfcf11ea4d5f0f75faf53af0c9.tar.bz2 rockbox-3bd167771d23edbfcf11ea4d5f0f75faf53af0c9.tar.xz | |
Initial import of the unmodified version of liba52-0.7.5-cvs, checked out of the Sourceforge CVS repository today.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5970 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/liba52/INSTALL')
| -rw-r--r-- | apps/codecs/liba52/INSTALL | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/apps/codecs/liba52/INSTALL b/apps/codecs/liba52/INSTALL new file mode 100644 index 0000000..30a07fe --- /dev/null +++ b/apps/codecs/liba52/INSTALL @@ -0,0 +1,58 @@ +Unix build instructions +----------------------- + +./configure +make +make install + +If you install from CVS you'll have to run ./bootstrap first + + +Building for win32 +------------------ + +There are at least three ways to do it: + +- natively on Windows using Microsoft VC++ and the vc++ project + included in this distribution. + +- natively on Windows using MSYS + MINGW (www.mingw.org) (MSYS is a + minimal build environnement to compile unixish projects under + windows. It provides all the common unix tools like sh, gmake...) + +- or on Linux, using the mingw32 cross-compiler + + +Building using MSYS + MINGW on windows +-------------------------------------- + +First you will need to download and install the latest MSYS (version +1.0.7 as of now) and MINGW. The installation is really easy. Begin +with the MSYS auto-installer and once this is done, extract MINGW into +c:\msys\1.0\mingw. You also have to remember to remove the make +utility included with MINGW as it conflicts with the one from MSYS +(just rename or remove c:\msys\1.0\mingw\bin\make.exe). + +http://prdownloads.sourceforge.net/mingw/MSYS-1.0.7-i686-2002.04.24-1.exe +http://prdownloads.sourceforge.net/mingw/MinGW-1.1.tar.gz + +Then you can build the package using: +# ./configure +# make + + +Building using the mingw32 cross-compiler +----------------------------------------- + +You need to install mingw32 first. For Debian GNU/Linux users, there +is a mingw32 package. Otherwise you might get it from the mingw site +at http://www.mingw.org/download.shtml. + +The videolan project also keeps precompiled mingw32 binaries at +http://www.videolan.org/vlc/windows.html . If you install these, +you'll have to set your PATH accordingly to include +/usr/local/cross-tools/bin too. + +The build should then proceed using something like: +# CC=i586-mingw32msvc-gcc ./configure --host=i586-mingw32msvc +# make |