Alright, got everything setup exactly as the guide shows, went to build and got 1 error, double checked and everything is -definitely- setup as the guide shows:
I've looked at the No Solution Folders patch, and the DolphinNoExternals.sln it would modify does not exist, nor is there any Externals.sln
Any ideas?
EDIT: I rebuilt just the 4 wx projects under Release Win32, and found the file I was looking for, so I copied all of the wx* libs out of the svn tree and into the following folder:
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\lib
Then I did rebuild solution on the whole thing and it worked. So then I changed it to Release x64 and repeated the steps, except that I put the wx* libs into the following folder:
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\lib\amd64
That got the x64 release to build as well.
So quick rundown until the Build Order is fixed (I looked at it but don't know what I'm doing with it bc I'm only familiar with linux coding really), here's what to do:
-Find the green arrow and set to whichever release you want to run, Win32, or x64.
-Select all 4 of the wx* projects toward the bottom of the Solution Explorer.
-Right click and hit Rebuild Selection.
-Go to (DolphinSVNdir)\Externals\wxWidgets\lib\vc_lib
-Go into either Win32 or x64 directory, depending on which build you are making
-Copy all *.lib files from there
-Go to (VCExpressInstallDir)\lib
-If building for x64, go into amd64 directory, else stay in lib directory
-Paste *.lib files copied from before
-Go back to VC++ Express and right click Solution 'Dolphin' and hit Rebuild Solution
Once done, make sure you remember to remove the wx*.lib files from the (VCExpressInstalldir)\lib and (VCExpressInstalldir)\lib\amd64 to prevent conflicts in the future.
One last edit: The build order has been fixed. It was a problem with quad core CPU's and parallel compiles.
Code:
16>------ Build started: Project: Core, Configuration: Release x64 ------
[-snip-]
11>LINK : fatal error LNK1181: cannot open input file 'wxmsw28u_core.lib'I've looked at the No Solution Folders patch, and the DolphinNoExternals.sln it would modify does not exist, nor is there any Externals.sln
Any ideas?
EDIT: I rebuilt just the 4 wx projects under Release Win32, and found the file I was looking for, so I copied all of the wx* libs out of the svn tree and into the following folder:
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\lib
Then I did rebuild solution on the whole thing and it worked. So then I changed it to Release x64 and repeated the steps, except that I put the wx* libs into the following folder:
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\lib\amd64
That got the x64 release to build as well.
So quick rundown until the Build Order is fixed (I looked at it but don't know what I'm doing with it bc I'm only familiar with linux coding really), here's what to do:
-Find the green arrow and set to whichever release you want to run, Win32, or x64.
-Select all 4 of the wx* projects toward the bottom of the Solution Explorer.
-Right click and hit Rebuild Selection.
-Go to (DolphinSVNdir)\Externals\wxWidgets\lib\vc_lib
-Go into either Win32 or x64 directory, depending on which build you are making
-Copy all *.lib files from there
-Go to (VCExpressInstallDir)\lib
-If building for x64, go into amd64 directory, else stay in lib directory
-Paste *.lib files copied from before
-Go back to VC++ Express and right click Solution 'Dolphin' and hit Rebuild Solution
Once done, make sure you remember to remove the wx*.lib files from the (VCExpressInstalldir)\lib and (VCExpressInstalldir)\lib\amd64 to prevent conflicts in the future.
One last edit: The build order has been fixed. It was a problem with quad core CPU's and parallel compiles.
