Hola nuexzz,
nuexzz.. wrote:I am still unable to compile the 64bit. I'm getting this error when I indicated the routes of the SDKs lib
Apologies for not looking at this sooner but I missed your original post.
It's difficult to know what exactly is going wrong here without some more info but it appears that either the Musashi68K project that Supermodel includes is not being built or its post-build steps are not being run for some reason.
What I suggest you do is try the following two things:
1) First, clean the solution with the "Build->Clean Solution" item in the main menu. Next, right mouse click on the Musashi68K project in the Solution Explorer and select "Build Project". If that builds with no errors then build the rest of the solution with "Build->Build Solution" in the main menu.
If it all runs to completion and without any errors then the problem is that in the Configuration Manager the Musashi68K project is not set to be built for the x64 build platform. Presumably the setting got lost when converting the solution to VS2010 from VS2008 for some unknown reason. To permanently fix it you'll need to use the Configuration Manager to alter it to be built every time the solution is.
2) If the above doesn't help then the problem must be that the post-build event for the Musashi68K project is not running properly. The purpose of this event is to run the Musashi executable that gets built and copy its output files into the main build folder. To check that it is configured properly, right mouse button on the Musashi68K project and select "Properties". Make sure "Platform" is set to x64 and then navigate to "Build Events->Post-Build Event". In the "Command Line" textbox check that it says the following:
- Code: Select all
"$(TargetPath)" ..\..\Src\CPU\68K\Musashi\..\..\Src\CPU\68K\Musashi\m68k_in.c
If not, update it and then clean and rebuild the solution with the "Build->Clean Solution" and "Build->Build Solution" options in the main menu.
NOTE: these steps are from memory and for VS2008 so they might differ slightly for you on VS2010 but you should be able to work out what to do.
Good luck and hope that helps! Nik.