![]() |
|
How to: Compile x64 Dolphin with VC++2008 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: How to: Compile x64 Dolphin with VC++2008 Express (/Thread-how-to-compile-x64-dolphin-with-vc-2008-express) |
RE: How to: Compile x64 Dolphin with VC++2008 Express - DefenderX - 06-09-2012 Syntax error... i can imagine, what you did wrong. There is something missing concerning the DirectXSDK paths (maybe a semikolon etc.) for x64: $(DXSDK_DIR)Utilities\Bin\x64;$(ExecutablePath) $(DXSDK_DIR)Include;$(IncludePath) $(DXSDK_DIR)Lib\x64;$(LibraryPath) for x86: $(DXSDK_DIR)Utilities\Bin\x86;$(ExecutablePath) $(DXSDK_DIR)Include;$(IncludePath) $(DXSDK_DIR)Lib\x86;$(LibraryPath) copy and paste it exactly like this. RE: How to: Compile x64 Dolphin with VC++2008 Express - neobrain - 06-09-2012 If you cared to look at the first error, it'd be obvious that it's an OpenMP related issue. RE: How to: Compile x64 Dolphin with VC++2008 Express - Arthur Mück - 06-09-2012 (06-09-2012, 07:30 PM)neobrain Wrote: If you cared to look at the first error, it'd be obvious that it's an OpenMP related issue.And what do I do with that recognition? As you see most errors are Code: error C2059: syntax error :and Code: error C2630: ';' found in what should be a comma-separated listBTW: I got the code from the trunk. I tried some things, also your suggestions defender and I came to this: http://pastebin.com/VgY7Rmeq |