~ubuntu-branches/ubuntu/hoary/binutils/hoary

« back to all changes in this revision

Viewing changes to gas/README-vms

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-03-18 13:07:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050318130752-j4i37zgqclj53b94
Tags: 2.15-5ubuntu2
debian/rules: Call pkgstriptranslations if present (the package does not
use debhelper, thus it does not happen automatically).

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
 
151
151
        5) If you are using the GNU-C++ compiler, you should modify the
152
152
compiler driver file GNU_CC:[000000]GCC.COM (or GXX.COM).  If you have a
153
 
seperate GXX.COM, then you need to change one line in GXX.COM to:
 
153
separate GXX.COM, then you need to change one line in GXX.COM to:
154
154
$ if f$locate("D",p2) .ne. P2_Length then Debug = " ""-G0"""
155
155
                                       Notice zero--->  ^
156
156
If you are using a GCC.COM that does both C and C++, add the following lines to
196
196
There are several *very* important differences, however.  First of all, since
197
197
there is no function call involved, you cannot step over the inline function
198
198
call - you always step into it. Secondly, since the same source lines are used
199
 
in many locations, there is a seperate copy of the source for *each* usage. 
 
199
in many locations, there is a separate copy of the source for *each* usage. 
200
200
Without this, breakpoints do not work, since we must have a 1-to-1 mapping
201
201
between source lines and PC.
202
202
        Since you cannot step over inline function calls, it can be a real pain