..:: PCSX2 Forums ::..

Full Version: Windows - Compile Guide and Support
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 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
When i build the latest SVN,I got an error like this :

Code:
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(151,5): error MSB6006: "cmd.exe" exited with code 1.

Anyone knows what's wrong ang how to fix it ?

Thanks!

use VS2010 and win7 X64
(06-10-2010, 01:05 PM)netcap Wrote: [ -> ]When i build the latest SVN,I got an error like this :

Code:
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(151,5): error MSB6006: "cmd.exe" exited with code 1.

Anyone knows what's wrong ang how to fix it ?

Thanks!

use VS2010 and win7 X64

This is a configuration issue with the project file for wxConfig28. In order to fix it, in Visual Studio you need to right click on that project and unload it. Then right click again and choose Edit wx_config.vcxproj. Find where it says:
Code:
<CustomBuild Include="..\..\include\wx\msw\setup.h">
and replace it with
Code:
<CustomBuild Include="..\..\include\msvc\wx\setup.h">
The error message is completely useless to tell you that the file setup.h is in a different directory, but changing the project file'll do ya.
(06-11-2010, 06:58 AM)almosthuman Wrote: [ -> ]
(06-10-2010, 01:05 PM)netcap Wrote: [ -> ]When i build the latest SVN,I got an error like this :

Code:
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(151,5): error MSB6006: "cmd.exe" exited with code 1.

Anyone knows what's wrong ang how to fix it ?

Thanks!

use VS2010 and win7 X64

This is a configuration issue with the project file for wxConfig28. In order to fix it, in Visual Studio you need to right click on that project and unload it. Then right click again and choose Edit wx_config.vcxproj. Find where it says:
Code:
<CustomBuild Include="..\..\include\wx\msw\setup.h">
and replace it with
Code:
<CustomBuild Include="..\..\include\msvc\wx\setup.h">
The error message is completely useless to tell you that the file setup.h is in a different directory, but changing the project file'll do ya.

Thank you very much!!!

It works now!
It seems like that the latest DirectX SDK(June 2010) has removed the "ddraw.lib",The compiler shows error "Can't open file "ddraw.lib" " ~~
(06-13-2010, 07:53 AM)netcap Wrote: [ -> ]It seems like that the latest DirectX SDK(June 2010) has removed the "ddraw.lib",The compiler shows error "Can't open file "ddraw.lib" " ~~

have the same problem, the version of DirectX SDK June not have the file in the directory ddraw.lib x86, x64 folder and it exists, anyone know how I do to hit it without the file can not compile the gsdx?

no VS2010 está dando erro no portaudio pois falta os arquivos do asiosdk onde encontro eles pois procurei e não conseguiu achar.
I just retained the ddraw.lib from older version of DirectX SDK,
I don't remember what the version exactly was,
but I'm sure it's the latest ddraw.lib of x86.

IIRC it's required by GSdx.
Hello,

I have just finished compiling latest REV from the SVN, all went ok apart from 2 errors and 20 warnings, I would like to compile without errors so if somebody could inform me what they mean, and how to correct them I would be grateful.

Code:
Error    6    error C3861: 'XInputEnable': identifier not found    c:\Development\Project Source\PCSX2\plugins\xpad\xpad.cpp    646    xpad
Error    7    error C3861: 'XInputEnable': identifier not found    c:\Development\Project Source\PCSX2\plugins\xpad\xpad.cpp    674    xpad

I am using VS2008 Professional on Windows 7 X86 to compile.

Many thanks.
Don't worry about it, it's just the xpad input plugin which im 99% cases you shouldn't need.
(06-17-2010, 10:37 AM)nemesis01 Wrote: [ -> ]Hello,

I have just finished compiling latest REV from the SVN, all went ok apart from 2 errors and 20 warnings, I would like to compile without errors so if somebody could inform me what they mean, and how to correct them I would be grateful.

Code:
Error    6    error C3861: 'XInputEnable': identifier not found    c:\Development\Project Source\PCSX2\plugins\xpad\xpad.cpp    646    xpad
Error    7    error C3861: 'XInputEnable': identifier not found    c:\Development\Project Source\PCSX2\plugins\xpad\xpad.cpp    674    xpad

I am using VS2008 Professional on Windows 7 X86 to compile.

Many thanks.

Try move the Microsoft DirectX SDK (June 2010)/include and /lib on the top of the include and library list.
Or, remove the Microsoft SDK/include and lib from the list.
PCSX2 only need Directx sdk, Nvidia cg and glew if you need...
Microsoft windows SDK will get things conflict...
I did already figure out how to get rid of the error, just entered the configuration manager and unchecked the x-pad plugin. No errors after that.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36