Open main menu

Difference between revisions of "Compiling ScummVM/MinGW"

1,406 bytes removed ,  00:39, 25 April 2008
Only list manual installation instructions, when an install option isn't available.
(Update)
(Only list manual installation instructions, when an install option isn't available.)
Line 155: Line 155:
To install the library, type:
To install the library, type:
  make install prefix=/mingw
  make install prefix=/mingw
Alternatively, when everything is compiled, copy the include\ogg folder inside MinGW's include folder. So, you should end up with an ogg folder in MinGW's include folder. Also, copy the src\.libs folder as-is inside MinGW's lib folder, and also copy the files from the src\.libs folder inside MinGW's lib folder (because ogg libraries are searched both in the lib and in the lib\.libs folder)
You can do this using Explorer or by typing these commands in MSYS inside the libogg folder:
cp -p include/ogg /mingw/include
cp -p src/.libs /mingw/lib
cp -p src/.libs/* /mingw/lib




Line 175: Line 166:
To install the library, type:
To install the library, type:
  make install prefix=/mingw
  make install prefix=/mingw
Alternatively, when everything is compiled, copy the include\vorbis folder inside MinGW's include folder. So, you should end up with a vorbis folder in MinGW's include folder. Also, copy lib\.libs folder from libvorbis folder as-is inside MinGW's lib folder, and also copy the files from the lib\.libs folder from libvorbis folder inside MinGW's lib folder (because vorbis libraries are searched both in the lib and in the lib\.libs folder)
You can do this using Explorer or by typing these commands in MSYS inside the libvorbis folder:
cp -p include/vorbis /mingw/include
cp -p src/.libs /mingw/lib
cp -p src/.libs/* /mingw/lib




Line 195: Line 177:
To install the library, type:
To install the library, type:
  make install prefix=/mingw
  make install prefix=/mingw
Alternatively, when everything is compiled, copy (...) inside MinGW's include folder.
[TODO]




Line 209: Line 188:
To install the library, type:
To install the library, type:
  make install prefix=/mingw
  make install prefix=/mingw
Alternatively, when everything is compiled, copy (...) inside MinGW's include folder.
[TODO]




657

edits