C/C++
increcpp.txt
Associated article: CodeStore and Incremental C++
Tags: C/C++
Published source code accompanying the article by Lee R. Nackman in which he describes the technology behind IBM's CodeStore which promises fast builds by taking the source code, the previous build's target files, and any other state the system chooses to save to produce the desired target files. For "incremental" builds such as these, build time is proportional to the impact of the source code changed since the last build.
CodeStore and Incremental C++
by Lee R. Nackman
Listing One
/* A.h */
#ifndef A_H
#define A_H
#include "B.h"
class A : public B
{
public:
B* f() { return new B; }
};
#endif
/* B.h */
#ifndef B_H
#define ...


