| 1 |
PvPGN Win32 Dev-C++ Compile Instructions
|
| 2 |
This file explains how to compile PvPGN for Win32 using Dev-C++ ( 5.0 beta 9 (4.9.9.0) )
|
| 3 |
|
| 4 |
1) Download Dev-C++ 5.0 beta 9 (4.9.9.0) with Mingw/GCC 3.3.1 from the folling sites:
|
| 5 |
http://prdownloads.sourceforge.net/dev-cpp/devcpp4990setup.exe
|
| 6 |
|
| 7 |
2) Install Dev-C++ in a folder without any spaces in the path
|
| 8 |
|
| 9 |
3) Go into the Win32-Projects folder of the PvPGN sources
|
| 10 |
Simply double-click on any of the *.dev files to fire up Dev-C++ and use Execute->Compile to build the binary
|
| 11 |
|
| 12 |
3) The resulting exe file will be in the bin directory and you can use it with the other files from the latest PvPGN release.
|
| 13 |
|
| 14 |
Notes for MYSQL Support:
|
| 15 |
mySQL support with Dev-C++ still unsupported/untested
|
| 16 |
|
| 17 |
Notes for GUI Support:
|
| 18 |
We won't support building a GUI version with Dev-C++
|
| 19 |
|
| 20 |
Common problems and Solutions:
|
| 21 |
==============================
|
| 22 |
|
| 23 |
Fatal: 'all-before' does not exist - don't know how to make it:
|
| 24 |
----------------------------------------------------------------
|
| 25 |
That happens when the wrong make.exe is invoked, usually the Borland one. It will usually leave a copyright notice in your compile log.
|
| 26 |
How to fix it? add the bin folder of your Dev-C++ (or MinGW) installation to the PATH environment variable, before any Borland path that might be there
|
| 27 |
For more details check: http://www14.brinkster.com/aditsu/dev-cpp-faq.html#allbefore
|
| 28 |
|
| 29 |
Complains about not being able to create Makefile or 'no rule to make target all':
|
| 30 |
-----------------------------------------------------------------------------------
|
| 31 |
Check size of pvpgn\src\win32\Makefile.win
|
| 32 |
If it's 0 bytes quit Dev-C++, delete the file and try to compile again |