This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

B19: gdb and template


Hi there:

I recently tried to debug a c++ program with templates.  I found that I cannot
step into the implementation of a template.  I prepared a simple example here to 
show what I mean.  Any advice is appreciated.

==================================
#include <stream.h>

template <class T>
void Print(const T & a)
{
  cout << a << endl;
}

void Print1(const float & a)
{
  cout << a << endl;
}

void Print1(const double & a)
{
  cout << a << endl;
}

main()
{
  Print(0.5);
  Print(0.4f);
  Print1(0.5);
  Print1(0.4f);
}
==================================

I used this command to compile the program: gcc -gstabs+ test.cpp -lstdc++.

When I tried to debug the program with gdb (4.16-B19), I could not step into the 
template function Print().  However I can step into function Print1().

What should I do to solve this problem?  Thanks!

-- 

Xiaomao

=================================================================
Xiaomao (Mark) Xiao                  E-Mail: xiao@cmold.com
C-MOLD                                  TEL: (607) 257-4949 x 699
31 Dutch Mill Road                      FAX: (607) 257-6355
Ithaca, NY 14850                        URL: http://www.cmold.com
=================================================================
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]