Changes between Initial Version and Version 1 of Ticket #47049
- Timestamp:
- Mar 5, 2015, 10:06:57 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #47049
- Property Cc larryv@… added
- Property Keywords gfortran backtrace removed
- Property Port gcc49 added; gfortran removed
- Property Owner changed from macports-tickets@… to mww@…
-
Ticket #47049 – Description
initial v1 7 7 Compare this with the Linux backtrace lower down. 8 8 9 The key difference for this very short demo program is that the Linux backtrace shows the source label, source file name, and source line number in the backtrace. " MAIN__ at btest.f90:12". This is the symbol information from a non-stripped object file, a.out in this case.9 The key difference for this very short demo program is that the Linux backtrace shows the source label, source file name, and source line number in the backtrace. "`MAIN__ at btest.f90:12`". This is the symbol information from a non-stripped object file, a.out in this case. 10 10 11 11 The backtrace on Mac is missing all of this. … … 14 14 15 15 This is not a new problem. Backtrace symbols were missing in the last several versions of gfortran, Mac OS, and Xcode on PSD Macs. 16 16 {{{ 17 17 mac56:/home/dallured/btest 7> gfortran --version | grep gcc 18 18 GNU Fortran (MacPorts gcc49 4.9.2_1) 4.9.2 … … 33 33 #4 0x10b155e4e 34 34 Floating exception 35 35 }}} 36 36 ================================================== 37 37 {{{ 38 38 linux64:~/btest 1025> /usr/locale/bin/gfortran --version | grep GCC 39 39 GNU Fortran (GCC) 4.9.2 … … 53 53 #3 0x400978 in MAIN__ at btest.f90:12 54 54 Floating exception (core dumped) 55 55 }}}