![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Linux RedHat, Ubuntu, SUSE, Fedora, Debian, Mandriva, Slackware, Gentoo linux, PCLinuxOS. All Linux questions here! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Script not reading Data from oracle table properly | Sagarddd | Shell Programming and Scripting | 2 | 04-03-2009 04:36 AM |
| how to view symbol table in unix | saravanan_nitt | High Level Programming | 1 | 02-14-2008 01:02 AM |
| Reading a table in a shell script | luiscarvalheiro | Shell Programming and Scripting | 13 | 08-10-2006 07:16 PM |
| no symbol table | Dom_Cyrus | High Level Programming | 2 | 01-31-2006 09:15 AM |
| reading filenames inside a program | j_t_kim | UNIX for Dummies Questions & Answers | 5 | 04-04-2002 03:13 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Reading ELF file Symbol table of C++ program
Folks,
I have some program(Test.cpp) as follows, #include<iostream> class Abc { private: int _theVar; public : int printVar(); }; int Abc :: printVar() { _theVar=10; } main() { Abc _t; _t.printVar(); } I compiled the program using g++ ( g++ -o Test Test.cpp) After this i tried read the "Test ELF" file's symbol table. I am able fetch the Abc :: printVar symbol, but i am not able to fetch the _theVar of Abc class. Please help me out in solving the this issue. Rgds, VInod |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|