- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
I have compiled a large proprietary mixed fortran 77 and 90 code with Composer XE usinng ifort -debug -O0. However, when I open the resulting binary within the idb GUI, none of the usual debugging options are available (e.g., the stepping features are grayed out, and breakpoints that are set are ignored when I run). Is there something obvious I am doing wrong? I have done a simple test with the usual helloworld.f90 code, and that works fine.
링크가 복사됨
2 응답
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
I used the following lines in the child makefile:
LD = /opt/intel/composerxe-2011/bin/ifort -nofor_main
.
.
.
@$(LD) -g -o m3 $(CRT1) $(OBJS_LIST) \
-L $(Machlibpath) \
$(LIBS)
I believed that the -g option would enable debug. The LD path points to the current version of composerxe-2011 -- 2011.2.137 .
Jerry
LD = /opt/intel/composerxe-2011/bin/ifort -nofor_main
.
.
.
@$(LD) -g -o m3 $(CRT1) $(OBJS_LIST) \
-L $(Machlibpath) \
$(LIBS)
I believed that the -g option would enable debug. The LD path points to the current version of composerxe-2011 -- 2011.2.137 .
Jerry