- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I am a new user of Intel VF - until now, I used Compaq VF 6.6c.
I am trying to understand the differences in the two environments, and especially those necessary to create 64-bit executables from my old Fortran sources - which worked fine under CVF in 32-bit. My problem is, When I try to debug the program, I get the following error message:
'Unable to start program "..."'.
The components for the 64-bit debugger are not registered. Please repair your Visual Studio 2005 Remote Debugger installation via 'Add or Remove Programs' in Control Panel."
Notice that the same source code can be debugged when the platform is set at 32-bit.
I run Windows XP 64-bit on a dual quad-core HP workstation. My system is updated, and I haven't been able to find any help elsewhere. Has anybody else encountered this error message?
I am a new user of Intel VF - until now, I used Compaq VF 6.6c.
I am trying to understand the differences in the two environments, and especially those necessary to create 64-bit executables from my old Fortran sources - which worked fine under CVF in 32-bit. My problem is, When I try to debug the program, I get the following error message:
'Unable to start program "..."'.
The components for the 64-bit debugger are not registered. Please repair your Visual Studio 2005 Remote Debugger installation via 'Add or Remove Programs' in Control Panel."
Notice that the same source code can be debugged when the platform is set at 32-bit.
I run Windows XP 64-bit on a dual quad-core HP workstation. My system is updated, and I haven't been able to find any help elsewhere. Has anybody else encountered this error message?
Link Copied
14 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This is a problem that just recently came to our attention. You see it only if you are using the included Visual Studio Premier Partner Edition - if you have a retail version of Visual Studio 2005, you don't get this.
To fix it, run C:Program FilesIntelDownloadIntelFortranCompiler10installs emote debuggerx64 dbgsetup.exe and follow the prompts. It will install the remote debugger and then run a configuration tool. It may prompt you about changing firewall rules, but you can ignore that. It is not actually going over the network.
We will fix the installer in a future update to run this automatically. We apologize for the inconvenience.
To fix it, run C:Program FilesIntelDownloadIntelFortranCompiler10installs emote debuggerx64 dbgsetup.exe and follow the prompts. It will install the remote debugger and then run a configuration tool. It may prompt you about changing firewall rules, but you can ignore that. It is not actually going over the network.
We will fix the installer in a future update to run this automatically. We apologize for the inconvenience.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks a lot, Steve. It works fine now.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - ISN Admin
Hi,
I am a new user of Intel VF - until now, I used Compaq VF 6.6c.
I am trying to understand the differences in the two environments, and especially those necessary to create 64-bit executables from my old Fortran sources - which worked fine under CVF in 32-bit. My problem is, When I try to debug the program, I get the following error message:
'Unable to start program "..."'.
The components for the 64-bit debugger are not registered. Please repair your Visual Studio 2005 Remote Debugger installation via 'Add or Remove Programs' in Control Panel."
Notice that the same source code can be debugged when the platform is set at 32-bit.
I run Windows XP 64-bit on a dual quad-core HP workstation. My system is updated, and I haven't been able to find any help elsewhere. Has anybody else encountered this error message?
I am a new user of Intel VF - until now, I used Compaq VF 6.6c.
I am trying to understand the differences in the two environments, and especially those necessary to create 64-bit executables from my old Fortran sources - which worked fine under CVF in 32-bit. My problem is, When I try to debug the program, I get the following error message:
'Unable to start program "..."'.
The components for the 64-bit debugger are not registered. Please repair your Visual Studio 2005 Remote Debugger installation via 'Add or Remove Programs' in Control Panel."
Notice that the same source code can be debugged when the platform is set at 32-bit.
I run Windows XP 64-bit on a dual quad-core HP workstation. My system is updated, and I haven't been able to find any help elsewhere. Has anybody else encountered this error message?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have the same problem with Intel Visual Fortran Compiler Integration for Microsoft Visual Studio* 2005, 11.0.3453.2005 packeged with VS2005 +SP1. I tried to interpret your suggestions for this version and ran the file rdbgsetup.exe. Now when I run my 64 bit project ("my_project") in debugger I am getting the following message:
"Debugging information for 'my_project.exe' cannot be found or does not match. Binary was not built with debug information"
After that if I choose to run the project anyway the project runs with disabled debug functionality. How to fix it? My OS is Windows XPx64, Intel Core i7 processor.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It sounds as if you have not built a Debug configuration. Please attach the buildlog.htm from the Debug folder of your project (and make sure you are specifying a debug configuration when you build.) See link below for attachment instructions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - Steve Lionel (Intel)
It sounds as if you have not built a Debug configuration. Please attach the buildlog.htm from the Debug folder of your project (and make sure you are specifying a debug configuration when you build.) See link below for attachment instructions.
| Build Log |
|
| Output |
Deleting intermediate files and output files for project 'Console1', configuration 'Debug|x64'. |
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I don't see that the linker is set to enable debugging and there's this "/qnoipo" switch in there which does not belong.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - Steve Lionel (Intel)
I don't see that the linker is set to enable debugging and there's this "/qnoipo" switch in there which does not belong.
For what it worth here is what helped. In VS I went to build>configuration manager and removed x64 platform of the project using
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Good. It may be that you missed that the Linker property pages have a Debug setting as well as the compiler.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - ISN Admin
Hi,
I am a new user of Intel VF - until now, I used Compaq VF 6.6c.
I am trying to understand the differences in the two environments, and especially those necessary to create 64-bit executables from my old Fortran sources - which worked fine under CVF in 32-bit. My problem is, When I try to debug the program, I get the following error message:
'Unable to start program "..."'.
The components for the 64-bit debugger are not registered. Please repair your Visual Studio 2005 Remote Debugger installation via 'Add or Remove Programs' in Control Panel."
Notice that the same source code can be debugged when the platform is set at 32-bit.
I run Windows XP 64-bit on a dual quad-core HP workstation. My system is updated, and I haven't been able to find any help elsewhere. Has anybody else encountered this error message?
I am a new user of Intel VF - until now, I used Compaq VF 6.6c.
I am trying to understand the differences in the two environments, and especially those necessary to create 64-bit executables from my old Fortran sources - which worked fine under CVF in 32-bit. My problem is, When I try to debug the program, I get the following error message:
'Unable to start program "..."'.
The components for the 64-bit debugger are not registered. Please repair your Visual Studio 2005 Remote Debugger installation via 'Add or Remove Programs' in Control Panel."
Notice that the same source code can be debugged when the platform is set at 32-bit.
I run Windows XP 64-bit on a dual quad-core HP workstation. My system is updated, and I haven't been able to find any help elsewhere. Has anybody else encountered this error message?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - Steve Lionel (Intel)
Good. It may be that you missed that the Linker property pages have a Debug setting as well as the compiler.
I am getting a similar message for the VIsual Studio 2008C# Application.
Any idea how can i fix it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - ketakimd
I am getting a similar message for the VIsual Studio 2008C# Application.
Any idea how can i fix it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am getting this message with Visual Studio 2008 for C# application:-
'Unable to start program "..."'.
The components for the 64-bit debugger are not registered. Please repair your Visual Studio 2005 Remote Debugger installation via 'Add or Remove Programs' in Control Panel."
And no, i am not using Intel Visual Fortran
'Unable to start program "..."'.
The components for the 64-bit debugger are not registered. Please repair your Visual Studio 2005 Remote Debugger installation via 'Add or Remove Programs' in Control Panel."
And no, i am not using Intel Visual Fortran
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Ok. Please understand that this forum is for support of Intel Visual Fortran and not general support for Microsoft products. I am somewhat confused that you say you are running VS2008 but the error message says VS2005. I also assume you are trying to debug on a 64-bit system.
Microsoft has an article explaining how to install the 64-bit debugger for VS2008 here. Normally, this support is installed by default when installing on a 64-bit system.
I hope this helps.
Microsoft has an article explaining how to install the 64-bit debugger for VS2008 here. Normally, this support is installed by default when installing on a 64-bit system.
I hope this helps.
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page