Date: Fri, 12 Mar 93 09:22:26 EST From: DJ Delorie To: kuku AT acds DOT physik DOT rwth-aachen DOT de Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: libc and LGPL >Is the libc.a coming with djgpp subject to the terms of LGPL? >If so, what does it mean for proprietary code linked with libc.a ? libc.a does NOT use GPL source code. Linking with libc.a does not change the copyright status of your appliction. All GPL code has been limited to libgcc.a, which is NOT required to link applications, although gcc links it in by default. Manually linking (via ld, use gcc -v to see what to type) will ensure that you don't need GPL code. DJ