LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   Find impacted exe's for the given function name (https://www.linuxquestions.org/questions/programming-9/find-impacted-exe%27s-for-the-given-function-name-848093/)

amarg 12-03-2010 02:15 AM

Find impacted exe's for the given function name
 
Hi All,

I am looking for some smart way to find all the exe's names for the given local function.
We are having thousands of C and Cobol files, and out of this we are creating 100's of exes. Now if I change any one of the function(C or Cobol), I want to know which exe's are going to be impacted.

One fuction written in some file can be called from lot other places, and create seperate exes.

Thanks,Amar

TB0ne 12-03-2010 07:41 AM

Quote:

Originally Posted by amarg (Post 4179208)
Hi All,
I am looking for some smart way to find all the exe's names for the given local function.
We are having thousands of C and Cobol files, and out of this we are creating 100's of exes. Now if I change any one of the function(C or Cobol), I want to know which exe's are going to be impacted.

One fuction written in some file can be called from lot other places, and create seperate exes.
Thanks,Amar

Set up a CVS server, and check your code into it. That's what it's for.

theNbomr 12-03-2010 08:49 AM

The dependencies should be evident by inspecting the Makefile(s). It may be possible to automate the analysis either by direct inspection of the Makefiles, or by running make with switches to only report what would be built, without actually performing the build.

--- rod.


All times are GMT -5. The time now is 02:08 AM.