Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ptp-user] Unresolved breakpoints

Hi Greg,

all projects are local
I created one C makefile project with intel exe toolchain, and 3 intel fortran static lib makefiles projects with intel fortran toolchain.

thus all projects are makefile projects with the following compilation options

  1. FORT        = ifort -g3 -O0 -fpp -threads -traceback -w -C -c  
  2. C           = icc -g3 -O0 -fpp -traceback -w -C -c  
  3. LINKER      = ifort -static -nofor_main -o  

I tried separately C/C++ and Fortran local applications, no problem with debugging.

with the real project I could localise that the problem is where C programm calls Fortran subroutine passing large arrays into it.

Vitaliy


On Fri, Oct 21, 2011 at 4:06 PM, Greg Watson <g.watson@xxxxxxxxxxxx> wrote:
Hi Vitaliy,

What type of launch configuration (e.g. C/C++ Application, Fortran Local Application, Parallel Application, etc.) are you using to debug the program?

Note that the PTP debugger (launched via Parallel Application) does not support idb.

If you're using Fortran Local Application (or C/C++ Application), I'd suggest compiling a C-only program and try to launch using C/C++ Application first. If it doesn't work, then you'll need post a question to the CDT forum (http://eclipse.org/cdt/support.php). They will not be able to help with Fortran questions, but if you can get it going with a C program then we may be able to help with the Fortran part.

Regards,
Greg


On Oct 21, 2011, at 9:57 AM, Vitaliy FEOKTISTOV wrote:

> Hello,
>
> my projects compilied as ifort and icc (Intel XE suite), and I use idb intel debugger.
>
> since several days I can not resolve the problem with "Unresolved breakpoints"
> otherwords, in debug mode the debuger does not stop on my breakpoints at all
>
> Could you help me to solve this issue, please ?
>
> Thank you!
> Vitaliy
>
>
> _______________________________________________
> ptp-user mailing list
> ptp-user@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/ptp-user

_______________________________________________
ptp-user mailing list
ptp-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/ptp-user


Back to the top