licence
licence
Posted Apr 27, 2010 15:16 UTC (Tue) by coriordan (guest, #7544)Parent article: LLVM 2.7 released
Free software offers a short cut for development. Instead of writing a whole new compiler, the NextStep team got an Objective-C compiler quickly by extending GCC instead of starting from scratch. And due to the copyleft licence of GCC, we also got something: a free software Objective-C compiler.
If LLVM offers companies a short cut for developers, but doesn't require that the extensions get contributed back as free software, then I'm worried this will reduce the number of commercial contributors to free software compilers. They'll get a short cut, and we'll get nothing. I don't see why free software users would want this situation.
Posted Apr 27, 2010 15:38 UTC (Tue)
by bronson (subscriber, #4806)
[Link] (7 responses)
Posted Apr 27, 2010 20:43 UTC (Tue)
by coriordan (guest, #7544)
[Link] (6 responses)
Posted Apr 27, 2010 21:32 UTC (Tue)
by daglwn (guest, #65432)
[Link] (5 responses)
This comment demonstrates a fundamental misunderstanding of the issue. First, LLVM is not playing catch-up. It is already at least as good as gcc by several measures. There are companies that have contributed significant enhancements to LLVM, not just stuff that gcc already implements. Often contributing code is not the problem. While sometimes companies want to hold onto IP for a little while, it is well-understood that contributing code back makes maintenance much easier. In the end, pushing things upstream is usually the best thing to do. The bigger issue with the GPL is how it affects other components of a system, in this case the compiler. LLVM is a set of libraries. GPLing libraries means that one cannot link them to proprietary modules. A compiler is a very modular thing. If LLVM were GPL companies wouldn't be able to use it. Not because they don't want to contribute code to LLVM, but because they couldn't legally link to it. A company that's heavily invested in other modules isn't going to throw those away and start from scratch. Instead the company will re-implement the missing piece and that means no code goes upstream into LLVM. One could argue that LLVM should be LGPL. That's certainly a viable alternative and would get things closer to where I think you want them to go. It has its own issues but LGPL is really more appropriate than GPL for LLVM if you want a copyleft license.
Posted Apr 28, 2010 0:28 UTC (Wed)
by coriordan (guest, #7544)
[Link] (4 responses)
It's not there yet. A proprietary extension that squeezes out a 10% speed increase is currently not very valuable because the software isn't used. When the software is widely used, then a 2% speed increase will be noteworthy. A that point, the commercial developers will keep their special sauce secret and projects and distros will be asked to choose between shipping slower binaries, or shipping faster binaries that can't be modified/recompiled without losing the speed increase.
That's a problem that's coming.
Posted Apr 28, 2010 3:41 UTC (Wed)
by daglwn (guest, #65432)
[Link] (3 responses)
The primary issue is not contributing code. It's being able to link to other software.
Posted Apr 28, 2010 20:41 UTC (Wed)
by man_ls (guest, #15091)
[Link] (2 responses)
Those that want to distribute or sell their proprietary modules along with the compiler cannot, and that is exactly Ciaran's point: a company cannot make a business of selling proprietary enhancements.
Posted Apr 29, 2010 4:46 UTC (Thu)
by Thalience (subscriber, #4217)
[Link] (1 responses)
The real interesting cases where someone might want to link parts of LLVM to proprietary code are things like using the JIT compilation infrastructure as part of the AI for a commercial game. Or the MC toolkit for binary analysis of some kind. Where the end product is not really a compiler in any traditional sense of the word.
Posted Apr 29, 2010 7:58 UTC (Thu)
by nix (subscriber, #2304)
[Link]
Posted Apr 27, 2010 15:39 UTC (Tue)
by BrucePerens (guest, #2510)
[Link] (7 responses)
Ciaran, it might help if there was a viable next-generation compiler project using GPL3 for people to jump upon. There isn't.
Posted Apr 27, 2010 17:19 UTC (Tue)
by b7j0c (guest, #27559)
[Link] (5 responses)
for everyone else, life will go on. i'm happily using clang on freebsd as well as dtrace and zfs.
Posted Apr 27, 2010 17:33 UTC (Tue)
by BrucePerens (guest, #2510)
[Link] (4 responses)
Posted Apr 27, 2010 18:16 UTC (Tue)
by elanthis (guest, #6227)
[Link] (1 responses)
Posted Apr 27, 2010 18:23 UTC (Tue)
by BrucePerens (guest, #2510)
[Link]
Posted Apr 27, 2010 20:41 UTC (Tue)
by coriordan (guest, #7544)
[Link] (1 responses)
This has become a problem sooner than I expected.
Posted Apr 29, 2010 3:29 UTC (Thu)
by darthscsi (guest, #8111)
[Link]
http://llvm.org/devmtg/2008-08/Petersen_FlashCCompiler_Hi...
Posted Apr 27, 2010 20:01 UTC (Tue)
by Cyberax (✭ supporter ✭, #52523)
[Link]
So far, no signs of license proliferation. Because it's easier to contribute private patches to the mainline then to maintain a fork.
My previous employer has a software product based on LLVM, and we've contributed quite a few patches (we had 'only mainline' policy for LLVM). And every time a new version of LLVM came out, we got a performance boost for our product absolutely for free.
Posted Apr 27, 2010 15:40 UTC (Tue)
by elanthis (guest, #6227)
[Link] (3 responses)
LLVM does not seem to be hurting in the least despite being liberally licensed, while GCC is wondering why the hell nobody wants to contribute.
Posted Apr 27, 2010 17:03 UTC (Tue)
by nix (subscriber, #2304)
[Link] (2 responses)
Posted Apr 27, 2010 18:20 UTC (Tue)
by patrick_g (subscriber, #44470)
[Link] (1 responses)
Posted Apr 27, 2010 19:20 UTC (Tue)
by daglwn (guest, #65432)
[Link]
Posted Apr 27, 2010 15:57 UTC (Tue)
by tjc (guest, #137)
[Link] (3 responses)
Posted Apr 27, 2010 16:16 UTC (Tue)
by drag (guest, #31333)
[Link] (2 responses)
It's relatively easy to get clean code and make things nice and fast when the requirements, expectations, and features are low. By the time LLVM gets up to GCC's portability, performance, and covers all the similar corner cases it's going to be huge and ugly also.
Another thing to keep in mind is that so far LLVM performs best as a compiler when it's using GCC in the back-end.
As far as LLVM vs GCC we pretty much win either way the things end up going.
Posted Apr 27, 2010 16:45 UTC (Tue)
by nteon (subscriber, #53899)
[Link] (1 responses)
Posted Apr 27, 2010 17:52 UTC (Tue)
by drag (guest, #31333)
[Link]
Posted Apr 27, 2010 16:55 UTC (Tue)
by cowsandmilk (guest, #55475)
[Link] (3 responses)
They know what they're doing.
Posted Apr 27, 2010 18:02 UTC (Tue)
by coriordan (guest, #7544)
[Link] (2 responses)
This tempts companies to contribute back the code that won't give the free software world any advantage.
If they can get the community to maintain the basic functionality and features that already exist in other free software projects, then of course they'll go for that.
But they'll keep the good stuff for themselves.
Posted Apr 27, 2010 18:43 UTC (Tue)
by tzafrir (subscriber, #11501)
[Link]
Posted Apr 27, 2010 19:24 UTC (Tue)
by daglwn (guest, #65432)
[Link]
Posted Apr 27, 2010 17:13 UTC (Tue)
by b7j0c (guest, #27559)
[Link] (3 responses)
indeed i don't recommend using any of the fsf licenses to anyone anymore. they have become the legal morass they sought to negate. gpl2...gpl3...lgpl...agpl...this minefield has become far too complex. my guess is most people using an fsf license can't even explain its implications.
now read the three clause bsd license. within thirty seconds you understand what the license implies.
Posted Apr 29, 2010 3:46 UTC (Thu)
by k8to (guest, #15413)
[Link] (2 responses)
Posted Apr 29, 2010 18:09 UTC (Thu)
by Trelane (subscriber, #56877)
[Link] (1 responses)
Posted May 2, 2010 17:46 UTC (Sun)
by k8to (guest, #15413)
[Link]
Posted Apr 27, 2010 17:46 UTC (Tue)
by trasz (guest, #45786)
[Link] (14 responses)
Also, take a look at license compatibility problems caused by GPL (actually, Stallman's interpretation of GPL). It's a strange kind of "freedom" when you cannot legally use GPL-ed library in Firefox, or cannot include ZFS in Linux.
Adding restrictions doesn't increase freedom. GPL means more restrictions.
Posted Apr 27, 2010 17:59 UTC (Tue)
by tzafrir (subscriber, #11501)
[Link]
Posted Apr 27, 2010 18:05 UTC (Tue)
by drag (guest, #31333)
[Link] (7 responses)
The problem has much more to do with the requirements of copyright assignments to MySQL.
And that still has not stopped anybody from any forks. It's just there is no point as long as Oracle keeps on making it open source and keep developing it... which they are.
> Also, take a look at license compatibility problems caused by GPL (actually, Stallman's interpretation of GPL). It's a strange kind of "freedom" when you cannot legally use GPL-ed library in Firefox, or cannot include ZFS in Linux.
ZFS and Firefox have their own restrictions that make them incompatible with the GPL.
Don't overlook that fact. Sure their restrictions are not a big deal when taken singularly, but when you start to mix and match all the different potential restrictions those licenses allow then you run into a huge legal mess very quickly.
In terms of Linux distributions the GPL provides a invaluable function as the 'lowest common denominator' in terms of 'lack of freedom'. It's the worst you can get.
When software licenses are attempting to layer more and more restrictions on end users is when you run into problems with GPL compatibility. When they are 'more free' then the GPL then there is no problem. So therefore the fact that the majority of the software in a typical Linux-based system is GPL means that it is keeping everybody honest.
Imagine you replace all the GPL/LGP'd software licensing with random selection of software licenses that the GPL has problems with... OpenSSL license, some Microsoft open source license, original mozilla license, motif licensing, etc etc. Now try to figure out how a Apache code is going to mix with OpenSSL code when writing a application that ties into a ZFS licensed library in a project that is principally licensed under the Apple Public Source code license and wants to create a GUI front end using the old QT proprietary license.
Posted Apr 27, 2010 20:08 UTC (Tue)
by b7j0c (guest, #27559)
[Link] (4 responses)
on the other hand, to turn your argument back on you, were one to replace the convoluted mess of fsf licenses with the three-clause bsd license, developers could actually read and understand the license they are using on their code.
even the "executive summaries" of just the gplv3 are nearly incomprehensible. the three-clause bsd license on the other hand doesn't even need a secondary explanation.
Posted Apr 28, 2010 8:21 UTC (Wed)
by mpr22 (subscriber, #60784)
[Link] (3 responses)
"If you distribute binaries, you have to make the source you built them from available (best plan is to just chuck it on the CD/DVD). If you distribute the software as device firmware, you have to let the device operate with end-user-modified replacement firmware. If you have patents touched on by the software, and you distribute it, you have to licence them for free."
Have I missed anything?
Posted Apr 28, 2010 8:31 UTC (Wed)
by patrick_g (subscriber, #44470)
[Link]
Posted Apr 28, 2010 10:34 UTC (Wed)
by trasz (guest, #45786)
[Link] (1 responses)
Posted Apr 28, 2010 14:30 UTC (Wed)
by mpr22 (subscriber, #60784)
[Link]
Posted Apr 27, 2010 21:58 UTC (Tue)
by roc (subscriber, #30627)
[Link]
This is not true. Firefox can be redistributed under the GPL. I'm not sure what you or the original poster are referring to.
Posted Apr 28, 2010 10:31 UTC (Wed)
by trasz (guest, #45786)
[Link]
Second thing is - it's not that licenses that are not compatible with GPL are more restrictive. Both CDDL and Mozilla are less restrictive than GPL, yet both are GPL-incompatible.
Posted Apr 28, 2010 14:05 UTC (Wed)
by pboddie (guest, #50784)
[Link] (4 responses)
When the MySQL authors assigned their copyright to others - a universal problem - they handed over control over licensing to someone else. Had MySQL been permissively licensed, the last open source release of it could have been years ago by now, should Sun have wanted this to happen. PostgreSQL's ownership is more fragmented, meaning that one party cannot control everything, but they can (and do) maintain proprietary editions of the software. Firefox is surely tri-licensed under the Mozilla licensing policy, so this is you making stuff up again. Also, copyleft licences are all about end-user privileges/freedoms: that the end-user gets to see, change and pass on the code. Everyone who has considered this matter with any seriousness knows this to be the case. It probably shouldn't come as a surprise that people would try and stick the intellectually feeble (but all too readily used) "troll" label on CiarĂ¡n O'Riordan while parroting the usual brand of ill-considered pontification on matters of "freedom". Some people would rather ridicule others than learn from them.
Posted Apr 28, 2010 18:14 UTC (Wed)
by trasz (guest, #45786)
[Link] (3 responses)
Firefox is tri-licensed, and probably wants to stay that way. This means you cannot make it use GPL-ed library, since it would mean the resulted copy would be GPL-only.
As for your "everyone knows that adding licensing restrictions gives end users more freedom" claim - believe me, outside of GPL camp it's not an universal wisdom. ;->
Posted Apr 28, 2010 22:30 UTC (Wed)
by pboddie (guest, #50784)
[Link] (2 responses)
Well, MySQL is independent from its "owners" right now. The whining from its original "owners" has a lot to do with them not being able to go back to the business of selling a proprietary or restricted version. Yes, I've seen this argument a lot. A bunch of people write code for a permissively licensed project, some corporation goes and enhances the code, ships it as a binary, but "it's OK because everyone still has the code they wrote". Compared to a project which has a copyleft licence, who loses? The end-users, of course. If I take Firefox, make it work with a GPL-licensed library and distribute my modified version under the GPL, whose licence am I violating? Mozilla have permitted me to license the software under the GPL. Your use of the word "cannot" implies that it's not legally possible, but in fact it's just your usual complaining about a copyleft licence being put on some code. Evidently not. But review what I've written above about corporations using permissively licensed code, then get back to us when you've caught up.
Posted Apr 29, 2010 14:57 UTC (Thu)
by trasz (guest, #45786)
[Link] (1 responses)
Not being able to go back to the business of selling enhanced version, you mean. Or selling any version at all, unless by selling you mean "asking money while at the same thing giving the same thing for free".
As I said, that's one of the problems created by copyleft licensing, which would never occur with permissive license.
"Yes, I've seen this argument a lot. A bunch of people write code for a permissively licensed project, some corporation goes and enhances the code, ships it as a binary, but "it's OK because everyone still has the code they wrote". Compared to a project which has a copyleft licence, who loses? The end-users, of course."
Nobody loses. End users are happy, because they can buy better product, that wouldn't exist with copyleft license, because noone would invest serious money into development of something they have to give away for free. Other end users are happy, because they can still use open version for free. Developers are happy, because the corporation pays them money for working on a derivative of their Open Source project. Corporation is happy, because it sells the product.
"If I take Firefox, make it work with a GPL-licensed library and distribute my modified version under the GPL, whose licence am I violating? Mozilla have permitted me to license the software under the GPL. Your use of the word "cannot" implies that it's not legally possible [..]"
Yeah, you're right here. However, it's not possible to incorporate it back into the original project (in this case Mozilla), for reasons described above. Still, it's yet another problem caused by the copyleft license.
Posted Apr 29, 2010 15:56 UTC (Thu)
by pboddie (guest, #50784)
[Link]
They can sell what they like as long as they adhere to the licensing: Red Hat seems to manage quite well doing just that. You'd think that being able to say "I am Monty!" and insisting that enough extra value is generated would be enough to differentiate Monty's outfit from other forks of MySQL, and Monty can still sell the software under the GPL. If his customers value that special edge that only Monty can provide, and if they're doing everything over the Web anyway, as long as they get the source code, no-one is violating the licence. And even if they ship actual software, if end-users are as apathetic as you make them out to be, they won't bother uploading the sources to the Internet, will they? You'll have to do better than that: if PostgreSQL was all owned by a single company - let's say it was Oracle - would the "open source" version still be under a permissive licence? I doubt it. Yeah, that Linux thing: no-one's invested anything in it. Even now, people and organisations are investing time in the open source variants of MySQL, although I myself wonder why they bother, but that has nothing to do with the licence. To make such claims is just plain disingenuousness at its most blatant, especially given which site you're writing this on. End-users do get the benefit of an improved product, potentially, disregarding the dog's breakfast that a lot of consumer electronics vendors seem to make when their code is exposed to public scrutiny, but end-users don't get the benefits around the code. This may seem unimportant to you, but claiming that it's absolutely unimportant is practically the same as the Bill Gates' jibe about "no-one wants the source code of their office suite": demonstrably untrue for, to take but one example, people whose native language is not in the list of wealthy, easily-milked markets supported by Mr Gates' proprietary software. Yes, I am right and you know it, although that didn't stop you from making stuff up anyway. And it's only a "problem" for people who want to consume permissively licensed software. A "problem" which amounts to the whining often seen when people whose permissively licensed work suddenly ends up in a copyleft-licensed project: whining which is more or less equivalent to "I wrote one thing but I meant another". That these people then accuse copyleft licence users of "not respecting other people's wishes" just demonstrates the levels of hypocrisy involved.
Posted Apr 28, 2010 1:50 UTC (Wed)
by rsidd (subscriber, #2582)
[Link] (23 responses)
Ciaran O'Riordan: you are not a free software advocate. You are a GNU troll.
In addition to what others have said above, the GNU licences in no way guarantee that modifications will be usable. Look at the khtml/webkit story (LGPL). Look at the ongoing Android/Linux story (GPL). (In fact what bit khtml was essentially what also bit FreeBSD: Apple did make all changes available, in their own tree with no effort to integrate upstream. It had nothing to do with the licence. Apple could well have gone with a Linux-based kernel, instead of the BSD/Mach one that they used, and a proprietary GUI. The result would have been the same.)
Whether corporate contributions make it upstream has to do with how the project is managed, not how it is licensed. As others have said, LLVM is doing fine. Meanwhile, your comments look like FUD -- your fear being that LLVM may overtake GCC as the C compiler of choice.
Posted Apr 28, 2010 3:46 UTC (Wed)
by daglwn (guest, #65432)
[Link]
Posted Apr 28, 2010 5:18 UTC (Wed)
by ncm (guest, #165)
[Link] (2 responses)
Posted Apr 28, 2010 6:09 UTC (Wed)
by rsidd (subscriber, #2582)
[Link] (1 responses)
Posted Apr 28, 2010 21:17 UTC (Wed)
by man_ls (guest, #15091)
[Link]
You are insulting a valuable member of the community just to make a point, which is disgusting.
Posted Apr 28, 2010 5:24 UTC (Wed)
by rqosa (subscriber, #24136)
[Link] (18 responses)
> Look at the khtml/webkit story (LGPL). WebKit isn't a good example here, because it now has plenty of non-Apple developers and has been ported to non-Apple systems; for example, the Qt port of it has been integrated into Qt upstream. If KHTML had been BSD-licensed instead of LGPL-licensed, Apple might have made WebKit proprietary, and none of that would have happened. It's true that WebKit hasn't been merged back into the original upstream (KHTML). However, there is now kwebkitpart, a KPart-wrapper around Qt WebKit which can be used in Konqueror as an alternative to KHTML.
Posted Apr 28, 2010 6:02 UTC (Wed)
by rsidd (subscriber, #2582)
[Link] (17 responses)
Yes, webkit developed a community because webkit happened to be useful (and was also a significant improvement on khtml). Apple released Darwin too, though the licence did not require them to; but it was not useful (people already had linux and the BSDs) and it withered. I suspect if gecko hadn't been such a mess, webkit wouldn't have caught on either (indeed, Apple would probably have gone for gecko directly).
In two high-profile cases now (OS X and Safari), Apple has chosen as its base a significantly less popular open-source project (Mach/BSD instead of Linux; khtml instead of gecko) on the grounds that its codebase was cleaner and more maintainable; and the decision has paid off significantly for them, and in the case of khtml/webkit, for the community. Now it looks very much like Apple would like to move to LLVM and eventually dump GCC. What will they do with LLVM? They can maintain their own tree and dump the upstream, as with webkit, or work with upstream; but in this case, given that LLVM is already a strong project, I suspect they will (continue to) work closely with upstream: their own fork is unlikely to offer compelling value, and diverging from upstream will only make life difficult for themselves. But their choice has nothing to do with the licence. The GPL forces you to release your changes but doesn't force you to play well with others: only your own self-interest can do that.
Posted Apr 28, 2010 8:30 UTC (Wed)
by patrick_g (subscriber, #44470)
[Link] (7 responses)
Posted Apr 28, 2010 9:07 UTC (Wed)
by rsidd (subscriber, #2582)
[Link] (6 responses)
>Mach/BSD cleaner and more maintainable than Linux ? Really ?
Remember we're talking about the late 1990s here, when Linux was, frankly, pretty flaky while FreeBSD powered some of the biggest internet servers. But many would say it's still true today. Don't write off the BSDs yet. They continue to get new developer talent partly because the codebase is easier to deal with and the community is friendlier than LKML.
Apple wasn't ignorant of linux: for a while they supported a port of linux to mach/ppc, MkLinux. They just decided it wasn't optimal for them.
Posted Apr 28, 2010 10:07 UTC (Wed)
by samb (guest, #32949)
[Link] (5 responses)
As late as the late 90s some people were also convinced that FreeBSD would beat out Linux wrt commercial use and contributions due to the 'more business friendly' license.
Posted Apr 28, 2010 10:36 UTC (Wed)
by trasz (guest, #45786)
[Link]
Posted Apr 28, 2010 10:41 UTC (Wed)
by rsidd (subscriber, #2582)
[Link] (3 responses)
>people were also convinced that FreeBSD would beat out Linux wrt commercial use
It did, if you count its descendants. Mac OS X installations far outnumber linux by any measure. Are you saying Apple made the wrong decision? Or are you saying that we should be unhappy because it's a proprietary system? Personally I'm happy at the success of OS X because it (a) made Unix more widespread, (b) made web developers realise that there's life beyond Win/IE, (c) gave the Linux desktop something to aim at.
Note, again, that Apple did contribute back their changes and continue to do so (latest release here). The majority of projects there are either Apple's own (APSL) or under the BSD or MIT licenses: in other words, Apple isn't being forced to do this. And if they had chosen to go with linux or another GPL'd system, it would have made no difference: they could have continued to do exactly what they're doing now.
Posted Apr 28, 2010 13:28 UTC (Wed)
by pboddie (guest, #50784)
[Link]
Citation needed! And you presumably really mean desktop/notebook installations (with the iPhone included with a bit of creative interpretation), especially after having read LWN coverage of the embedded scene and how Linux seems to be rather ubiquitous, even amongst the products of large corporations.
Posted Apr 28, 2010 14:03 UTC (Wed)
by nye (subscriber, #51576)
[Link] (1 responses)
Huh? Have I fallen into bizzarro world? Linux is nearly completely ubiquitous. Almost anyone with an ADSL modem or home router uses it every day. Anyone using a DVR, or a load of other kinds of set-top boxes. Lots of TVs now run Linux, maybe DVD players too. I've seen printers running Linux; hell it even runs on *fridges*. Fridges!
It has a substantial share of the phone market - maybe not as large as the iPhone but not far enough behind to be completely blown away. In fact, if you pick an embedded device at random, there's a better than average chance it'll be running Linux.
In contrast, I would estimate that I've seen less than a dozen machines in the flesh running OS X, *ever*, including phones but excluding iPod shuffles and early generations. If indeed they use OS X, then you can multiply that by a very small integer.
In fact, I can't name any manufacturers making devices based on FreeBSD other than Apple (I'm sure there must be a fair few, especially things like firewalls and NAS devices, but I don't actually know of any). I don't think it can be seriously argued any more that the GPL is an impediment to commercial use of Linux, versus the commercially-friendly BSD licence.
Posted Apr 28, 2010 14:42 UTC (Wed)
by tzafrir (subscriber, #11501)
[Link]
Posted Apr 28, 2010 13:36 UTC (Wed)
by pboddie (guest, #50784)
[Link] (2 responses)
I so like the way Apple advocates like to beautify the achievements of Apple while downplaying the hard work of others. KHTML was a significant piece of work in itself - a competitive browser engine at the time - and perhaps the only reason why there is a (non-Apple) community around WebKit is because the KDE developers chose to license KHTML under the LGPL in the first place. Recalling that there was friction between the KHTML developers and the in-house Apple WebKit developers about collaboration, I imagine that had a permissive licence been chosen, WebKit would have been a purely proprietary affair.
Posted Apr 29, 2010 8:24 UTC (Thu)
by rsidd (subscriber, #2582)
[Link] (1 responses)
>I imagine that had a permissive licence been chosen, WebKit would have been a purely proprietary affair.
You mean, like all the other proprietary projects listed here? Apple picked up BSD long before picking up khtml. In both cases, it released sources back (and continues to do so) but did not play nice with upstream. The only difference is, webkit picked up substantial third-party interest while Darwin did not. I argue it is because webkit was in fact a big improvement on khtml. This is not to say khtml was bad (obviously it wasn't, since Apple chose it). And it would have been preferable for Apple to work on improving khtml, but that's not what happened.
Posted Apr 29, 2010 11:38 UTC (Thu)
by pboddie (guest, #50784)
[Link]
Do you expect us to go through those projects removing the ones that are not copyleft-licensed and then bask in the generosity of Apple? Well, looking at the list and choosing a few projects at random, it quickly becomes an issue of assessing (for us and for Apple) whether it's worth the bother of maintaining a proprietary fork. Take something like python-dateutil, of which I have recent experience: sure, if Apple's employees/lawyers thought it worthwhile to maintain a proprietary version, they'd probably do so, but such work would be fairly unappealing and would not provide any economic or strategic advantage. Why not let the maintainer(s) do the time-consuming and thankless task of making sure such a piece of infrastructure just works? Throw a few patches over the wall every now and again, just to keep the local maintenance burden at a minimum (and to avoid having to patch numerous Python-based packages which depend on it). In contrast, when you're in desperate need of a Web browser that you can control - noting that Safari is yet another vehicle for standards front-running - there is a real incentive to maintain a proprietary fork if you can. And when you can put many more developers on the fork than there are behind the original project, the incentive to work with that project diminishes. Finally, given that Apple are quite content to use patents as a form of anticompetitive instrument, is it really so hard to believe that had WebKit been permissively licensed, Apple would not have taken the opportunity to freeze out competitors like Nokia by taking their derived version private? It would surely be cheaper than a bunch of patent lawyers.
Posted Apr 28, 2010 22:29 UTC (Wed)
by wmf (guest, #33791)
[Link] (2 responses)
Posted Apr 29, 2010 8:19 UTC (Thu)
by rsidd (subscriber, #2582)
[Link] (1 responses)
Posted Apr 29, 2010 15:32 UTC (Thu)
by daglwn (guest, #65432)
[Link]
Posted Apr 29, 2010 5:12 UTC (Thu)
by rqosa (subscriber, #24136)
[Link] (2 responses)
> Apple has chosen as its base a significantly less popular open-source project (Mach/BSD instead of Linux; khtml instead of gecko) on the grounds that its codebase was cleaner and more maintainable I don't think that "cleaner and more maintainable" was Apple's reason for choosing Mach/BSD. NeXTSTEP was first released in October 1988, almost three years before Linux 0.01. Then it was rebranded "OPENSTEP for Mach", then "Rhapsody", then "Mac OS X Server 1.0", then "Mac OS X 10.0", etc.
Posted Apr 29, 2010 8:31 UTC (Thu)
by rsidd (subscriber, #2582)
[Link] (1 responses)
Posted Apr 29, 2010 9:43 UTC (Thu)
by paulj (subscriber, #341)
[Link]
Posted Apr 28, 2010 19:01 UTC (Wed)
by tdz (subscriber, #58733)
[Link]
I'd love to join in in this everlasting classic of flame wars, but I'll rather make some other point: if the LLVM developers would change to GPL, they'd likely scare away a lot of BSD people that support LLVM because it is non-GPL. So they would lose one of their main selling points and compete directly against GCC.
licence
Of course they'll contribute at this stage. The current focus is on catch-up, and those companies have a self-serving interest in getting LLVM to a stage where they can do useful stuff while free-riding on it instead of having to build on GCC and give everything back.
licence
licence
licence
licence
Why is it that companies shouldn't be able to link a GPL compiler to other software, like proprietary modules? As long as it is only used in-house there is no problem at all, and I would guess that is the primary use case for 99% of users. Particularly for a compiler: you enhance it, you use it to compile your software, you distribute the result. (All libraries used by compiled code should be under a different license, of course, just like with GCC.)
licence
licence
licence
Over the long term LLVM will be hurt just because of its license proliferation - lots of code, but lots of reasons not to use it. Surprisingly, some of its commercial contributors turn to GPL licenses just to impede the others from running away with their code.licence
licence
licence
licence
No. That producers of new code won't stop at the GPL, but will also use proprietary licenses.
licence
licence
licence
licence
licence
licence
>>> Everyone knows why LLVM is popular with developers. It's much more modern and less messy (and has a library interface and is hellishly extensible).licence
Since GCC version 4.5 it is possible to extend the compiler with plugins.
See http://gcc.gnu.org/wiki/plugins
licence
Starting over
Instead of writing a whole new compiler, the NextStep team got an Objective-C compiler quickly by extending GCC instead of starting from scratch.
That's largely due to the fact that Objective-C is a superset of C, right down to the syntax of the language, where many language features are implemented as compiler directives. Anyone writing an Objective-C compiler based on a free C compiler would have the same advantage. And starting over from scratch was probably LLVM's biggest advantage. I expect there's very little cruft in LLVM.
Starting over
Starting over
Another thing to keep in mind is that so far LLVM performs best as a compiler when it's using GCC in the back-end.
Citation? There has been llvm-gcc, which uses the LLVM optimization passes & code-generation with the gcc front-end, and dragon egg which does the same using gcc 4.5's plug-in infrastructure. I haven't heard of a clang front-end stuck onto the gcc back-end stuff, but I haven't been following as closely over the past few months.
Starting over
licence
licence
licence
licence
licence
licence
licence
licence
licence
licence
licence
licence
licence
>>> Have I missed anything?licence
Excellent summary ! Thanks a lot.
licence
licence
licence
> with the GPL.
licence
Catalogue of myths
Take a look at MySQL vs PostgreSQL - right now the fact that MySQL is GPL prevents the original authors (or anyone else, except for Oracle) from continuing their business.
It's a strange kind of "freedom" when you cannot legally use GPL-ed library in Firefox, or cannot include ZFS in Linux.
Catalogue of myths
Catalogue of myths
If MySQL was permissively licensed, it would be independent from its "owners" despite any copyright assignments; if Sun wanted to close it, the community would just continue developing open version.
It happens all the time, due to Fujitsu having its own closed-source fork of PostgreSQL, or Juniper having its own closed-source fork of FreeBSD - or even Panasonic having its own version of FreeBSD, which seems to have replaced Linux on new Viera TVs. It doesn't impact the original, open source, project, because there is no single "privileged party", like Oracle in case of MySQL.
Firefox is tri-licensed, and probably wants to stay that way. This means you cannot make it use GPL-ed library, since it would mean the resulted copy would be GPL-only.
As for your "everyone knows that adding licensing restrictions gives end users more freedom" claim - believe me, outside of GPL camp it's not an universal wisdom. ;->
Catalogue of myths
Catalogue of myths
Not being able to go back to the business of selling enhanced version, you mean. Or selling any version at all, unless by selling you mean "asking money while at the same thing giving the same thing for free".
As I said, that's one of the problems created by copyleft licensing, which would never occur with permissive license.
Nobody loses. End users are happy, because they can buy better product, that wouldn't exist with copyleft license, because noone would invest serious money into development of something they have to give away for free.
Yeah, you're right here. However, it's not possible to incorporate it back into the original project (in this case Mozilla), for reasons described above. Still, it's yet another problem caused by the copyleft license.
licence
licence
licence
licence
Repeatedly making well-reasoned and polite requests based on one's beliefs does not make anyone a troll. Ciaran is not begging for attention but making a valid point, with which you may happen to disagree; and he has proved time and time again that he is ready to work to make things happen.
GNU troll?
licence
licence
>>> Apple has chosen as its base a significantly less popular open-source project (Mach/BSD instead of Linux; khtml instead of gecko) on the grounds that its codebase was cleaner and more maintainablelicence
Mach/BSD cleaner and more maintainable than Linux ? Really ?
licence
licence
licence
licence
licence
It did, if you count its descendants. Mac OS X installations far outnumber linux by any measure.
licence
licence
licence
Yes, webkit developed a community because webkit happened to be useful (and was also a significant improvement on khtml).
licence
licence
You mean, like all the other proprietary projects listed here? [page showing list of source packages]
licence
licence
licence
licence
licence
licence
licence
