Dolphin, the GameCube and Wii emulator - Forums

Full Version: How to: Compile x64 Dolphin with VC++2008 Express
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11
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.
If you cared to look at the first error, it'd be obvious that it's an OpenMP related issue.
(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 list

BTW: I got the code from the trunk.
I tried some things, also your suggestions defender and I came to this: http://pastebin.com/VgY7Rmeq
Pages: 1 2 3 4 5 6 7 8 9 10 11