C/C++
linking.txt
Associated article: Pseudo-Incremental Linking for C/C++
Tags: C/C++
Published source code files accompanying the article by William A. Hoffman and Rupert W. Curwen in which they describe a method for managing link/run time which provides fast link/run time during development, without sacrificing run time in the final product, and without the use of customized, non-standard linking software. Also see LINKING.ZIP
Pseudo-Incremental Linking for C/C++
by William A. Hoffman and Rupert W. Curwen
Example 1:
#include "classtest.h"
extern "C" int classtest()
{
ClassTest c;
c.test1();
c.test2();
return 1;
}
Example 2:
(gdb) set auto-so-lib 0
(gdb) b main
Breakpoint 1 ...


