• Login
  • Register
  • Dolphin Forums
  • Home
  • FAQ
  • Download
  • Wiki
  • Code


Dolphin, the GameCube and Wii emulator - Forums › Dolphin Emulator Discussion and Support › Development Discussion v
« Previous 1 ... 52 53 54 55 56 ... 117 Next »

How to: Compile x64 Dolphin with VC++2008 Express
View New Posts | View Today's Posts

Thread Rating:
  • 33 Vote(s) - 3.15 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Modes
How to: Compile x64 Dolphin with VC++2008 Express
10-20-2009, 12:55 AM (This post was last modified: 10-29-2009, 10:24 AM by Speeddymon.)
#43
Speeddymon Offline
Junior Member
**
Posts: 22
Threads: 2
Joined: Oct 2009
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:


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.
Find
Reply
« Next Oldest | Next Newest »


Messages In This Thread
How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 06-28-2009, 07:05 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - RDilus - 06-28-2009, 07:38 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Asylum - 06-29-2009, 03:52 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Iulius - 06-29-2009, 04:17 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - gcp111 - 06-29-2009, 05:39 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - DacoTaco - 06-29-2009, 06:27 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - LuisR14 - 07-02-2009, 03:16 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Creed7 - 07-05-2009, 09:05 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - DacoTaco - 07-05-2009, 09:44 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Creed7 - 07-05-2009, 10:07 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - da_petcu21 - 07-16-2009, 05:42 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 07-16-2009, 07:06 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Risenlord - 07-16-2009, 07:30 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - servvs - 07-21-2009, 09:30 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Core2uu - 07-21-2009, 10:00 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - servvs - 07-21-2009, 10:07 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 07-21-2009, 11:20 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Core2uu - 07-21-2009, 11:24 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - master9716 - 07-23-2009, 09:45 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - servvs - 07-24-2009, 02:31 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - dstruct2k - 08-12-2009, 03:38 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 08-13-2009, 03:22 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - dstruct2k - 08-13-2009, 04:05 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 08-13-2009, 04:17 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - dstruct2k - 08-13-2009, 04:24 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Gombit - 08-15-2009, 11:14 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Core2uu - 08-15-2009, 04:05 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - dstruct2k - 08-15-2009, 07:19 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Gombit - 08-15-2009, 07:42 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - hoplita - 08-19-2009, 08:11 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - dstruct2k - 08-22-2009, 02:43 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - nerji - 08-26-2009, 10:46 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - dstruct2k - 08-27-2009, 04:26 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - nerji - 08-27-2009, 08:17 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 08-28-2009, 03:09 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - nerji - 08-29-2009, 08:23 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - nerji - 08-31-2009, 12:23 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - dstruct2k - 09-02-2009, 06:08 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Gombit - 09-08-2009, 12:20 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - LuisR14 - 09-08-2009, 10:22 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - James333 - 09-08-2009, 10:28 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Gombit - 09-08-2009, 11:56 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Speeddymon - 10-20-2009, 12:55 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - darkshadw - 10-29-2009, 06:38 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 10-29-2009, 09:37 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - James333 - 10-29-2009, 11:19 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Speeddymon - 10-29-2009, 11:24 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - James333 - 11-02-2009, 02:10 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - pettersean - 11-03-2009, 01:20 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - WhiteZero - 12-07-2009, 01:28 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - WhiteZero - 12-11-2009, 05:59 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - James333 - 12-11-2009, 06:01 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - WhiteZero - 12-11-2009, 06:14 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - WhiteZero - 12-15-2009, 04:41 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - aeridus - 12-19-2009, 12:43 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Morvie - 12-23-2009, 09:23 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - James333 - 12-24-2009, 07:12 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Morvie - 12-24-2009, 10:16 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Jefferson - 01-12-2010, 02:58 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 01-12-2010, 06:06 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Jefferson - 01-18-2010, 06:12 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - WhiteZero - 01-18-2010, 06:44 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Jefferson - 01-18-2010, 08:44 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - WhiteZero - 01-18-2010, 01:43 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Jefferson - 01-19-2010, 07:31 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Jefferson - 01-19-2010, 08:55 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 01-20-2010, 04:46 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - defiancenl - 01-20-2010, 10:40 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 01-21-2010, 05:13 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - defiancenl - 01-22-2010, 01:53 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Man Ik Weet - 06-17-2010, 11:59 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Jefferson - 01-21-2010, 07:16 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 01-21-2010, 07:38 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - darkshadw - 01-22-2010, 03:45 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - defiancenl - 01-22-2010, 05:57 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 01-22-2010, 06:48 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Jefferson - 01-22-2010, 06:13 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Jefferson - 01-22-2010, 09:16 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - darkshadw - 01-24-2010, 12:52 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - TheBboyKnowledge - 01-26-2010, 02:21 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Jefferson - 01-28-2010, 05:06 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - CacoFFF - 01-28-2010, 05:39 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Jefferson - 01-28-2010, 09:33 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - thegamefreak0134 - 02-23-2010, 04:47 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - blackJade - 06-18-2010, 12:30 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Man Ik Weet - 06-18-2010, 12:33 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - blackJade - 06-18-2010, 12:45 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Man Ik Weet - 06-18-2010, 12:47 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - blackJade - 06-18-2010, 01:05 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Man Ik Weet - 06-18-2010, 01:06 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Somaz - 09-03-2010, 11:44 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Anti-Ultimate - 10-26-2010, 12:50 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - shawnanastasio - 01-09-2011, 09:28 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Link_to_the_past - 01-27-2011, 08:46 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Runo - 02-09-2011, 11:16 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - gosu - 03-24-2011, 09:37 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Arthur Mück - 06-08-2012, 04:39 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - ExtremeDude2 - 04-28-2011, 06:42 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - DefenderX - 06-09-2012, 06:15 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Arthur Mück - 06-09-2012, 11:26 AM
RE: How to: Compile x64 Dolphin with VC++2008 Express - DefenderX - 06-09-2012, 05:44 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - neobrain - 06-09-2012, 07:30 PM
RE: How to: Compile x64 Dolphin with VC++2008 Express - Arthur Mück - 06-09-2012, 07:49 PM

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:


Users browsing this thread: 1 Guest(s)



Powered By MyBB | Theme by Fragma

Linear Mode
Threaded Mode