Tracking Dependencies C++

Questions about programming languages and debugging
Post Reply
User avatar
Stavros
ΜΟΛΩΝ ΛΑΒΕ
ΜΟΛΩΝ ΛΑΒΕ
Posts: 1098
Joined: 02 Jan 2006, 17:00
18
Location: Mississippi, U.S.A.

Tracking Dependencies C++

Post by Stavros »

Is there a piece of software that tracks files that are included in a C++ project in unmanaged code? Everything I've come across has been for managed (.NET) code. Windows or Linux, but I'd like to be able to have both.

User avatar
ayu
Staff
Staff
Posts: 8109
Joined: 27 Aug 2005, 16:00
18
Contact:

Re: Tracking Dependencies C++

Post by ayu »

I used this one a few years ago.
Think it might be what you are after :)

Code: Select all

http://www.dependencywalker.com/
"The best place to hide a tree, is in a forest"

User avatar
Stavros
ΜΟΛΩΝ ΛΑΒΕ
ΜΟΛΩΝ ΛΑΒΕ
Posts: 1098
Joined: 02 Jan 2006, 17:00
18
Location: Mississippi, U.S.A.

Re: Tracking Dependencies C++

Post by Stavros »

That looks more like executable level dependency tracking. I realize what I said was slightly misleading. I'm looking for something that graphs C++ #include dependencies. I remembered doxygen does this so I'm gonna try that.

Post Reply