Building MAME using Microsoft Visual Studio compilers: Difference between revisions
From MAMEDEV Wiki
No edit summary |
(updated path to python executable) |
||
Line 7: | Line 7: | ||
# You must already have an environment that can build MAME using the MinGW tools. Although you won't be using gcc to compile, you will be using several of the other tools included in the standard MAME [http://mamedev.org/tools/ MinGW Development Environment] | # You must already have an environment that can build MAME using the MinGW tools. Although you won't be using gcc to compile, you will be using several of the other tools included in the standard MAME [http://mamedev.org/tools/ MinGW Development Environment] | ||
# Switch to the directory where the root MAME makefile lives. | # Switch to the directory where the root MAME makefile lives. | ||
# Once you've done that, simply run: <code>make vs2015 PYTHON_EXECUTABLE=c:/ | # Once you've done that, simply run: <code>make vs2015 PYTHON_EXECUTABLE=c:/msys64/mingw64/bin/python.exe</code> and wait for it to create projects | ||
# In order not to specify PYTHON_EXECUTABLE all the time, just | # In order not to specify PYTHON_EXECUTABLE all the time, just place it in system variables | ||
# For Visual Studio 2013 use: <code>make vs2013 </code> | # For Visual Studio 2013 use: <code>make vs2013 </code> | ||
# If you are building with XP compatibility enabled run <code>make vs2015_xp</code> or <code>make vs2013_xp</code> | # If you are building with XP compatibility enabled run <code>make vs2015_xp</code> or <code>make vs2013_xp</code> |
Revision as of 22:39, 28 May 2016
By default, MAME is configured via the makefile to build using the MinGW gcc compiler. Although this is a nice cross-platform solution, debugging binaries built this way leaves a lot to be desired.
If you own a copy of Visual Studio, you can configure MAME to build using those tools instead. Once you have done that, you can debug problems in MAME using the Visual Studio debugger, which is a huge step up from gdb.
Here's how to make it work:
- You must already have an environment that can build MAME using the MinGW tools. Although you won't be using gcc to compile, you will be using several of the other tools included in the standard MAME MinGW Development Environment
- Switch to the directory where the root MAME makefile lives.
- Once you've done that, simply run:
make vs2015 PYTHON_EXECUTABLE=c:/msys64/mingw64/bin/python.exe
and wait for it to create projects - In order not to specify PYTHON_EXECUTABLE all the time, just place it in system variables
- For Visual Studio 2013 use:
make vs2013
- If you are building with XP compatibility enabled run
make vs2015_xp
ormake vs2013_xp
- Browse to folder containing solution file and open it with Visual Studio
- Inside Visual Studio you can change to Debug/Release x86 or x64 builds
- While doing development please note that you need to update LUA files in scripts folders in order to add new sources and regenerate projects
- Note that all parameters for partial compilation works so you can do
make SUBTARGET=tiny vs2015
ormake vs2015 SUBTARGET=drivername SOURCES=src\mame\drivers\drivername.cpp
Back to How MAME Works