- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Just tried to play with TRACEBACKQQ and produced a simple example.
TRACEBACKQQ produces an error message "forrtl: severe (41):
insufficient virtual memory". The problem is triggered by the ifort
option "-ftrapuv".
$ ifort -g -O0 -ftrapuv -o a.exe a.for && ./a.exe
***
forrtl: severe (41): insufficient virtual memory
Image PC Routine Line Source
a.exe 080914F7 Unknown Unknown Unknown
a.exe 08090B17 Unknown Unknown Unknown
a.exe 0805E4EE Unknown Unknown Unknown
a.exe 0804A7C6 Unknown Unknown Unknown
a.exe 0804B5CE Unknown Unknown Unknown
a.exe 08049D0E Unknown Unknown Unknown
a.exe 08049C71 Unknown Unknown Unknown
libc.so.6 B7E5EFE0 Unknown Unknown Unknown
a.exe 08049BB1 Unknown Unknown Unknown
(Also notice the lack of source code references (line number and file). Sigh.)
PROGRAM A
IMPLICIT NONE
REAL Z
Z=9999.999
PRINT'(X,F3.2)',Z
CALL TRACEBACKQQ
PRINT*,'DONE'
END
$ ifort -g -O0 -ftrapuv -o a.exe a.for && ./a.exe
***
forrtl: severe (41): insufficient virtual memory
Image PC Routine Line Source
a.exe 080914F7 Unknown Unknown Unknown
a.exe 08090B17 Unknown Unknown Unknown
a.exe 0805E4EE Unknown Unknown Unknown
a.exe 0804A7C6 Unknown Unknown Unknown
a.exe 0804B5CE Unknown Unknown Unknown
a.exe 08049D0E Unknown Unknown Unknown
a.exe 08049C71 Unknown Unknown Unknown
libc.so.6 B7E5EFE0 Unknown Unknown Unknown
a.exe 08049BB1 Unknown Unknown Unknown
(Also notice the lack of source code references (line number and file). Sigh.)
PROGRAM A
IMPLICIT NONE
REAL Z
Z=9999.999
PRINT'(X,F3.2)',Z
CALL TRACEBACKQQ
PRINT*,'DONE'
END
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Add -traceback.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Oh, and just forget about -ftrapuv. It is useless in its current implementation.

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