![]() |
|
[r7248]_X86-X64_Compile Dolphin with VC++2010 Express - Printable Version +- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org) +-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support) +--- Forum: Development Discussion (https://forums.dolphin-emu.org/Forum-development-discussion) +--- Thread: [r7248]_X86-X64_Compile Dolphin with VC++2010 Express (/Thread-r7248-x86-x64-compile-dolphin-with-vc-2010-express) |
[r7248]_X86-X64_Compile Dolphin with VC++2010 Express - morka - 02-12-2011 How to: Compile x64 Dolphin with VC++2010 Express finally managed to compile with VC + 2010 Express Works great Thank you to tapek and godisgovernment r7248_Win32 http://www.mediafire.com/?m1a69e8k535rb9j r7248_Win64 http://www.mediafire.com/?il70zewp0we0i8n other build http://forums.dolphin-emu.org/showthread.php?tid=502 http://forums.dolphin-emu.org/showthread.php?tid=2176 http://forums.dolphin-emu.org/showthread.php?tid=13772 Download : ______________________________________________________ Microsoft® Visual Studio® 2010 Express Download All - Offline Install ISO image file http://www.microsoft.com/express/downloads/#2010-All DirectX Software Development Kit http://www.microsoft.com/downloads/en/details.aspx?FamilyID=3021d52b-514e-41d3-ad02-438a3ba730ba Microsoft Windows SDK for Windows 7 and .NET Framework 4 (ISO) Version: 7.1 x86 ISO File Name: http://download.microsoft.com/download/F/1/0/F10113F5-B750-4969-A255-274341AC6BCE/GRMSDK_EN_DVD.iso x64 ISO File Name: http://download.microsoft.com/download/F/1/0/F10113F5-B750-4969-A255-274341AC6BCE/GRMSDKX_EN_DVD.iso Wiki Dolphin: ______________________________________________________ http://code.google.com/p/dolphin-emu/wiki/Windows_Build RE: How to: Compile x64 Dolphin with VC++2010 Express+r7133_Win32 Comp with VC2010 - Toad King - 02-12-2011 You have to launch VS2010 from the x64 build environment. Start Menu -> Windows SDK 7.1 -> Windows SDK 7.1 Command Prompt Then run "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\VCExpress.exe" (or whatever/wherever your copy of VS is) RE: How to: Compile x64 Dolphin with VC++2010 Express+r7133_Win32 Comp with VC2010 - shuffle2 - 02-12-2011 what? o_O It sounds like you just need to run the windows sdk VS registration tool...then you won't have to launch VS all funny-like every time you want to use it... RE: How to: Compile x64 Dolphin with VC++2010 Express+r7133_Win32 Comp with VC2010 - morka - 02-12-2011 should create a tutorial for VC 2010 like that of 2008 although this would RE: How to: Compile x64 Dolphin with VC++2010 Express+r7133_Win32 Comp with VC2010 - Toad King - 02-12-2011 (02-12-2011, 07:54 AM)shuffle2 Wrote: what? o_O That tool only registers it for VS2008 for me. RE: How to: Compile x64 Dolphin with VC++2010 Express+r7173_Win64 Comp with VC2010 - morka - 02-15-2011 r7173_Win64 Compile with VC++2010 Express http://www.mediafire.com/?7lr4aqhsa2php7q RE: How to: Compile x64 Dolphin with VC++2010 Express+r7173_Win64 Comp with VC2010 - tapek - 02-15-2011 (02-12-2011, 07:01 AM)morka Wrote: finally managed to compile with VC + 2010 Express Not needed to add any include/lib directory. Change only Platform Toolset in General properties from v100 to Windows7.1SDK. All include/lib directories will be automaticaly set. You can also force Windows7.1SDK Platform as default for all x64 project by editing file: Code: C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\x64\Microsoft.Cpp.x64.default.propsCode: <PlatformToolset Condition="'$(PlatformToolset)' == ''">v100</PlatformToolset>to Code: <PlatformToolset Condition="'$(PlatformToolset)' == ''">Windows7.1SDK</PlatformToolset>You can do same for Win32 arch file. Also using Windows 7.1 SDK Toolset overcome some Visual Studio 2010 RTM bugs, so I recommend to use it, even with professional or ultimate Visual Studio versions. RE: How to: Compile x64 Dolphin with VC++2010 Express+r7173_Win64 Comp with VC2010 - morka - 02-15-2011 Thank you tapek I'll give it a try Works great and thank you to tapek r7175_Win64 Compile with VC++2010 Express http://www.mediafire.com/?f4bbqzvwe4d1xtg RE: [r7175]_X86-X64_Compile Dolphin with VC++2010 Express - morka - 02-17-2011 r7184_Win32 http://www.mediafire.com/?1fsbdl6kyltxxd3 r7184_Win64 http://www.mediafire.com/?v6pwwb0y2bdir65 RE: [r7184]_X86-X64_Compile Dolphin with VC++2010 Express - shuffle2 - 02-17-2011 FWIW: Here are the correct paths to add to VC++ Directories: For Microsoft.Cpp.Win32.user Executable Directories: $(DXSDK_DIR)Utilities\Bin\x86 Include Directories: $(DXSDK_DIR)Include Library Directories: $(DXSDK_DIR)Lib\x86 For Microsoft.Cpp.x64.user Executable Directories: $(DXSDK_DIR)Utilities\Bin\x64 Include Directories: $(DXSDK_DIR)Include Library Directories: $(DXSDK_DIR)Lib\x64 You also should NOT have to: Change PlatformToolset value Launch VS2010 in a strange way Edit the property sheet files manually If you do those things...you're doin it rong. |