Does a code inherit GNU GPL if it just link to GPL librrary?
Posted
by
user14284
on Programmers
See other posts from Programmers
or by user14284
Published on 2012-12-11T16:33:02Z
Indexed on
2012/12/11
17:22 UTC
Read the original article
Hit count: 238
gpl
Sorry for bad English.
Suppose there is a library xxx
under GNU GPL, that provide a function yyy
. Suppose my code links to the library and use this function. Does my code inherit GPL license?
IANAL, but my thoughts are conflicting:
- On other hand, my code is derivative from the library, so it should inherit GPL.
- On other hand, my code just use link to the
xxx
. Maybe there are other libraries, that has the same interface (particularly, they provideyyy
function with same functionality, but different implementation). My code may link to any. My code really doesn't directly derived fromxxx
, it just use its interface. So, my code shouldn't inherit GPL.
I'm confused.
ADDED. The question is absolutely abstract. I don't mean any concrete GPL library.
© Programmers or respective owner