Sangamesh B <forum.san@xxxxxxxxx> writes: > Is each gcc compiled executable link with libgmp, by default? > Or only in some circumstances libgmp gets linked? (output of ldd <exe>). libgmp is linked into the gcc compiler itself. It is not linked into code compiled by gcc (unless that code explicitly links against -lgmp itself, of course). Ian