I am using Microsoft Visual Studio 2010 on Windows 7 Service Pack 1 x64.
Â
When building the appropriate (VBA2010.sln) Solution File, I encounter an error...
Â
Error 27 error MSB3721: The command "C:\Users\Cody Mitchell\Desktop\VBA-M\trunk\project\vs2010_mfc\..\..\..\dependencies\nasm.exe -o "C:\Users\Cody Mitchell\Desktop\VBA-M\trunk\project\vs2010_mfc\x64\Release_temp\2xSaImmx.obj" -DDJGPP -O1 -f win32 -Xvc -- ..\..\src\filters\2xSaImmx.asm" exited with code 1. C:\Users\Cody Mitchell\Desktop\VBA-M\trunk\project\vs2010_mfc\nasm.targets 45 6 VisualBoyAdvance-M
Â
I have only been able to run that command successfully by opening a cmd.exe window and executing the following:
Code: Select all
nasm.exe -o "C:\Users\Cody Mitchell\Desktop\VBA-M\trunk\project\vs2010_mfc\x64\Release_temp\2xSaImmx.obj" -D__DJGPP__ -O1 -f win32 -Xvc -- ..\trunk\src\filters\2xSaImmx.asm
Â
Any help in building would be appreciated.