Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

7
  • If you combined some GPL code into a larger set of libraries, then in my opinion the combination is derived from that GPL code, so you need to follow the GPL rules by also releasing the source code of the whole set of libraries under the GPL as well. Commented Feb 15, 2020 at 11:55
  • @Brandin and if it's just a wasm file sitting on another web server the browser loads? I mean, what constitutes combining? If I call an executable that's gpl, that means my executable and all related code is gpl? Commented Feb 18, 2020 at 5:05
  • What legal juridiction are you under? (European, USA, ...). Did you ask your lawyer? Commented Feb 18, 2020 at 13:22
  • @Tracker1 This is answered in the GPL FAQ. Commented Feb 18, 2020 at 14:08
  • @Brandin seems like if the webasm would most closely resemble simple execution/fork since it's not really sharing internalized data structures, but passing in values (file contents) whole, as would a simple fork/exec. So an app that uses the webasm as a plugin shouldn't need to be GPL to use the wasm, assuming separate install (optionalDependencies) Commented Feb 21, 2020 at 16:35