[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference turris::decladebug

Title:Digital Ladebug debugger
Moderator:TLE::LUCIA
Created:Fri Feb 28 1992
Last Modified:Fri Jun 06 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:969
Total number of notes:3959

811.0. "More than one file named 'eg016.hxx' found in the binary" by ADA9X::BRETT () Tue Feb 04 1997 15:45

The following is very serious for us, because it drastically affects the
way we are allowed to structure our source pool.

/Bevin


% cat eg016.cxx

#include "eg016.hxx"

type_S x;

int main()
{
    return f(&x);
}



% cat eg016.hxx

typedef struct S {
    int i;
} type_S;

int f(type_S *x)
{
    return x->i;
}


% cxx -g eg016.cxx
% ladebug a.out
Welcome to the Ladebug Debugger Version 4.0-29
------------------
object file name: a.out
Reading symbolic information ...done
(ladebug) stop in f
[#1: stop in int f(type_S*) ]
(ladebug) run
[1] stopped at [int f(type_S*):8 0x120002144]
      8     return x->i;
(ladebug) stop at 8
Warning: More than one file named 'eg016.hxx' found in the binary.
Warning: Breakpoint not set
(ladebug) quit

T.RTitleUserPersonal
Name
DateLines
811.1ADA9X::BRETTTue Feb 04 1997 15:495
dxladebug 4.0-29

No breakpoint buttons appear in the source for f(){...}


811.2TLE::BRETTFri Apr 04 1997 14:594
fixed for C++ with CXX 5.6, Ladebug 4.0-BL34 by having GEM put out suffixed
file names

but still a problem for C and other languages.