I am writing a C library, and have selected to license it with the LGPL because I want it to be possible for people to use it in a commercial way, but force them to at least keep the library itself open source.

I also want to create bindings for other languages like Python. I have been working on this using SWIG. I notice that SWIG's license is GPL3, so since the bindings include GPL3 code, does that mean that my bindings must be licensed as GPL3 instead of LGPL? Does this affect the license options for the library code at all?

Thanks.

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

Much like GCC, the SWIG maintainers have made sure that the code generated will be under the license of its user's choice. This is usually done by dual-licensing specific parts of its code. See

http://www.swig.org/legal.html

As such, using SWIG does not force any specific license on its output.

EDIT:

GCC actually adds an exception to the GPL, which is a far more precise method of dealing with this issue, rather than dual-licensing parts of its code:

http://www.gnu.org/licenses/gcc-exception.html

link|improve this answer
Thanks for the answer, that clears things up. I was also interested in the more general, theoretical answer... is it possible to link LGPL code with a GPL3 dependency without having to relicense the LGPL code as GPL3, or are they incompatible in that way? – Steve Nov 25 '10 at 16:42
feedback

The question looks quiet similar the one which got this answer:

Is the code generated by a gnu program is under gnu gpl too?

So it depends on if SWIG copies parts of it's own code into the binding or if the binding depends on SWIG at runtime.

link|improve this answer
feedback

From looking at SWIG's legal page, it appears you shouldn't have any issues distributing the generated code.

Excerpt from the SWIG License:

You may copy, modify, distribute, and make derivative works based on
this software, in source code or object code form, without
restriction. If you distribute the software to others, you may do so according to the terms of your choice. This software is offered as is, without warranty of any kind.

link|improve this answer
feedback

the code generated by swig isn't a derivative work in as far as the GPL license is concerned. It is simmlar to using gcc

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.