Compiling spring (mingw and visual studio 7/8)
Moderator: Moderators
Re: Compiling spring (mingw and visual studio 7/8)
express is free ;p anyway if you've got a full version, then ok, but 2008 is simply a better compiler.
Re: Compiling spring (mingw and visual studio 7/8)
I can build you an updated 2005, I guess.
Do you have the expensive version of 2005 rather than the free version?
Do you have the expensive version of 2005 rather than the free version?
Re: Compiling spring (mingw and visual studio 7/8)
Ok, I got it to work with lurker's libs
Re: Compiling spring (mingw and visual studio 7/8)
upload them somewhere?
Re: Compiling spring (mingw and visual studio 7/8)
I took those (actually they have been provided by hoijui)
http://spring.jobjol.nl/show_file.php?id=1527
http://spring.jobjol.nl/show_file.php?id=1527
-
- Spring Developer
- Posts: 1254
- Joined: 24 Jun 2007, 08:34
Re: Compiling spring (mingw and visual studio 7/8)
New mingwlibs:
http://spring.jobjol.nl/show_file.php?id=1102
Now includes OpenAL32 dll + include files
http://spring.jobjol.nl/show_file.php?id=1102
Now includes OpenAL32 dll + include files
Re: Compiling spring (mingw and visual studio 7/8)
I'm having troubles with the mingwilbs_v13.exe. When I try to run it, it just says I have plenty of memory free.
Code: Select all
Program too big to fit in memory
Re: Compiling spring (mingw and visual studio 7/8)
open it in 7zip, something is broken with the self-extracting part.
-
- Spring Developer
- Posts: 1254
- Joined: 24 Jun 2007, 08:34
Re: Compiling spring (mingw and visual studio 7/8)
Made new mingwlibs, with boost updated to 1.38.
The old version failed at win32-thread support.
http://jobjol.nl/1102
The old version failed at win32-thread support.
http://jobjol.nl/1102
Re: Compiling spring (mingw and visual studio 7/8)
I'm trying to compile Spring with MinGW under WindowsXP. I have installed mingwlibs v16 and managed to compile all source files, but the linking part fails with the following message:
There's freetype6.dll under mingwlibs\dll but I'm not sure if it's the right file for the job or not. There's no libfreetype6.a anywhere I know.
Any idea how I should correct this?
EDIT: this was for 0.78.2.1 sources. After some talk in #sy I was instructed to get mingwlibs v12. Sadly all download links are dead
- Garo
Code: Select all
[ 0%] Built target gamedata
[ 10%] Built target streflop
[ 15%] Built target lua
[ 16%] Built target 7zip
[ 16%] Built target hpiutil2
[ 16%] Built target minizip
Linking CXX executable spring.exe
c:/mingw/bin/../lib/gcc/mingw32/4.3.3/../../../../mingw32/bin/ld.exe: cannot find -lfreetype
Any idea how I should correct this?
EDIT: this was for 0.78.2.1 sources. After some talk in #sy I was instructed to get mingwlibs v12. Sadly all download links are dead

- Garo
Re: Compiling spring (mingw and visual studio 7/8)
http://spring.jobjol.nl/show_file.php?id=2036
mingwlibs v17 with junction.exe, script for making junctions and libboost_program_options compiled.
mingwlibs v17 with junction.exe, script for making junctions and libboost_program_options compiled.
Re: Compiling spring (mingw and visual studio 7/8)
Seriously? A junction point? Does it fall back to copy if it's not on NTFS?
Re: Compiling spring (mingw and visual studio 7/8)
it's a 4-line .bat, no idea what it does on non-ntfs, don't have such relics on my boxen 

Re: Compiling spring (mingw and visual studio 7/8)
mingwlibs v18 (minor changes)
as we found out, the junctions thing is not needed, so they are out again, plus awk.exe was replaced with one that does not depend on msys.
http://jobjol.nl/2043
as we found out, the junctions thing is not needed, so they are out again, plus awk.exe was replaced with one that does not depend on msys.
http://jobjol.nl/2043
Re: Compiling spring (mingw and visual studio 7/8)
I'm trying to compile Spring with VS.net 2008 (same error ocurred with 2005 as well) and I'm getting
Do I have the wrong platform SDK version? Or what else may cause this problem?
Code: Select all
1>SkirmishAILibraryInfo.cpp
1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2059) : error C2144: syntax error : 'int' should be preceded by ';'
1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2059) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2059) : error C2470: 'IAVIStream' : looks like a function definition, but there is no parameter list; skipping apparent body
1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2097) : error C2143: syntax error : missing ';' before '*'
1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2097) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2097) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2103) : error C2144: syntax error : 'int' should be preceded by ';'
1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2103) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2103) : error C2086: 'int interface' : redefinition
1> C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2059) : see declaration of 'interface'
Re: Compiling spring (mingw and visual studio 7/8)
http://www.eggheadcafe.com/forumarchive ... 105268.asp
Same problem?
windows.h needs to be included before Vfw.h
-lVfw32.lib for linking
Same problem?
windows.h needs to be included before Vfw.h
-lVfw32.lib for linking
submarine wrote:I'm trying to compile Spring with VS.net 2008 (same error ocurred with 2005 as well) and I'm getting
Do I have the wrong platform SDK version? Or what else may cause this problem?Code: Select all
1>SkirmishAILibraryInfo.cpp 1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2059) : error C2144: syntax error : 'int' should be preceded by ';' 1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2059) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2059) : error C2470: 'IAVIStream' : looks like a function definition, but there is no parameter list; skipping apparent body 1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2097) : error C2143: syntax error : missing ';' before '*' 1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2097) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2097) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2103) : error C2144: syntax error : 'int' should be preceded by ';' 1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2103) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 1>C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2103) : error C2086: 'int interface' : redefinition 1> C:\Program Files\Microsoft SDKs\Windows\v6.1\include\vfw.h(2059) : see declaration of 'interface'
Re: Compiling spring (mingw and visual studio 7/8)
You can also compile with NO_AVI
Re: Compiling spring (mingw and visual studio 7/8)
Do we have an upto date VC9 libs package?
Re: Compiling spring (mingw and visual studio 7/8)
Ahk
*tears hair out*
Where can I find ANY vclib package for 2008.
Not on:
*tears hair out*
Where can I find ANY vclib package for 2008.
Not on:
- This site
- Spring files
- Darkstars
Re: Compiling spring (mingw and visual studio 7/8)
mingw build env isn't terribly hard on windows, *and* it'll sync