Difference between revisions of "Compiling ScummVM/MinGW"

Jump to navigation Jump to search
no edit summary
Line 27: Line 27:
* [http://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D NASM]. Optional, for faster compile of scalers
* [http://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D NASM]. Optional, for faster compile of scalers
** You need the latest Win32 binary ([http://www.nasm.us/pub/nasm/releasebuilds/2.15.03/win32/ v2.15.03] at the time of writing).
** You need the latest Win32 binary ([http://www.nasm.us/pub/nasm/releasebuilds/2.15.03/win32/ v2.15.03] at the time of writing).
* [https://cmake.org/ CMake]. Optional, for compiling libjpeg-turbo.
** You need the latest Win32 installer.


* [https://xiph.org/flac/download.html FLAC]. Optional, for FLAC support
* [https://xiph.org/flac/download.html FLAC]. Optional, for FLAC support
Line 120: Line 123:
=== NASM ===
=== NASM ===


First of all, we need nasm. So unzip the nasm archive in a directory, and copy both files to MinGW's bin directory. Alternatively, you can include the folder you unzipped the files in your system path. To do this, go to Control Panel->System, Advanced tab->environment variables and edit the "PATH" variable in the system variables list, adding the folder where you placed the aforementioned files. Directories in the system path are split with a semicolon (;), e.g. "C:\MinGW\msys\1.0\bin;C:\MinGW\bin;C:\nasm".  
Unzip the nasm archive in a folder, and copy both files to MinGW's bin directory.
 
 
=== pkg-config-lite ===
 
Unzip the pkg-config-lite archive in a folder, and copy the "bin" and "share" to MinGW's root directory.


Note that changes to the PATH will be reflected on newly opened command prompts only, so if you got any open already, close them to avoid confusion


=== SDL ===
=== SDL ===
Line 141: Line 148:
=== libogg ===
=== libogg ===


libogg should be compiled before libvorbis and libFLAC
libogg should be compiled before libvorbis, libtheora and libFLAC.
 
Unzip the libogg archive in a folder, open MSYS, go to the libogg folder and issue these commands to compile and install the library:
Unzip the libogg archive in a folder, open MSYS, go to the libogg folder and issue these commands to compile and install the library:


Line 160: Line 168:
=== libmad ===
=== libmad ===


Unzip the libmad archive in a folder. Open MSYS, go to the libmad folder. If you are using gcc 4.4 or higher, run the following command:
Unzip the libmad archive in a folder, open MSYS, go to the libmad folder If you are using gcc 4.4 or higher, run the following command:
  sed -i '/-fforce-mem/d' configure
  sed -i '/-fforce-mem/d' configure


Line 171: Line 179:
=== libmpeg2 ===
=== libmpeg2 ===


Unzip the libmpeg2 archive into a folder. Open MSYS, go to the libmpeg2 folder.
Unzip the libmpeg2 archive into a folder, open MSYS, go to the libmpeg2 folder and issue these commands to compile and install the library:
 
sed -i -e '/AC_C_ALWAYS_INLINE/d' -e 's/-mcpu/-mtune/' configure.ac
Then issue these commands to compile and install the library:
./bootstrap
  ./configure --disable-sdl --disable-shared --prefix=/mingw
  ./configure --disable-sdl --disable-shared --prefix=/mingw
  make
  make
  make install
  make install


Note that if you are compiling x64 i.e. for a 64-bit target, then currently (v0.5.1), the following patch is needed:
<syntaxhighlight lang="diff">
--- libvo/video_out_dx.c.orig  2014-02-17 16:38:24.000000000 +0100
+++ libvo/video_out_dx.c        2014-02-17 16:39:34.000000000 +0100
@@ -92,7 +92,7 @@
    switch (message) {
    case WM_WINDOWPOSCHANGED:
-      instance = (dx_instance_t *) GetWindowLong (hwnd, GWL_USERDATA);
+      instance = (dx_instance_t *) GetWindowLongPtr (hwnd, GWLP_USERDATA);
        /* update the window position and size */
        point_window.x = 0;
@@ -173,7 +173,7 @@
    /* store a directx_instance pointer into the window local storage
      * (for later use in event_handler).
      * We need to use SetWindowLongPtr when it is available in mingw */
-    SetWindowLong (instance->window, GWL_USERDATA, (LONG) instance);
+    SetWindowLongPtr (instance->window, GWLP_USERDATA, (LONG_PTR) instance);
    ShowWindow (instance->window, SW_SHOW);
</syntaxhighlight>


=== FLAC ===
=== FLAC ===
Line 240: Line 226:
  make
  make
  make install
  make install


=== libpng ===
=== libpng ===
Line 246: Line 233:


  ./configure --disable-shared --prefix=/mingw
  ./configure --disable-shared --prefix=/mingw
make pnglibconf.h
sed -i 's/\x0D//' pnglibconf.h
  make
  make
  make install
  make install
Line 261: Line 250:
=== libfaad2 ===
=== libfaad2 ===


Unzip the libfaad2 archive in a folder, open MSYS, go to the libfaad2 folder and apply the following patch:
Unzip the libfaad2 archive in a folder, open MSYS, go to the libfaad2 folder and issue these commands to compile and install the library:
./configure --disable-shared --prefix=/mingw
make
make install
 
 
=== freetype ===
 
Unzip the freetype archive in a folder, open MSYS, go to the freetype folder and issue these commands to compile and install the library:
 
./configure --disable-shared --prefix=/mingw
make
make install
 
 
=== fribidi ===


<syntaxhighlight lang="diff">
Unzip the fribidi archive in a folder, open MSYS, go to the fribidi folder and issue these commands to compile and install the library:
--- frontend/main.c
+++ frontend/main.c
@@ -31,7 +31,9 @@
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
+#ifndef __MINGW32__
#define off_t __int64
+#endif
#else
#include <time.h>
#endif
</syntaxhighlight>


Then issue these commands to compile and install the library:
  ./configure --disable-shared --prefix=/mingw
  ./configure --disable-shared --prefix=/mingw
  make
  make
Line 284: Line 274:




=== freetype ===
=== libjpeg-turbo ===
 
Unzip the libjpeg-turbo archive in a folder, open MSYS, go to the libjpeg-turbo folder and issue these commands to compile and install the library:
 
cmake -G "MSYS Makefiles" -DENABLE_SHARED=OFF -D-DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_BUILD_TYPE=Release .
make
make install
 
 
=== SDL_net ===


Unzip the freetype archive in a folder, open MSYS, go to the freetype folder and issue these commands to compile and install the library:
Unzip the SDL_net archive in a folder, open MSYS, go to the SDL_net folder and issue these commands to compile and install the library:


  ./configure --disable-shared --prefix=/mingw
  ./configure --disable-shared --prefix=/mingw
  make
  make
  make install
  make install
=== libcurl ===
Unzip the curl archive in a folder, open MSYS, go to the curl folder and issue these commands to compile and install the library:
./configure --disable-shared --prefix=/mingw --with-winssl --disable-pthreads --disable-ldap
make
make install


== Compiling ScummVM ==
== Compiling ScummVM ==
213

edits

Navigation menu