<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:osnews="http://osnews.com/rss2#">
	<channel>
		<title>OSNews: </title>
		<link>http://www.osnews.com/story/18013/Apple_Developing_a_New_LLVM_C_Front-End</link>
		<description>Exploring the Future of Computing</description>
		<language>en-us</language>
		<copyright>Copyright 2001-2009, David Adams</copyright>
		<webMaster>adam+nospam@osnews.com</webMaster>
		<lastBuildDate>Mon, 09 Nov 2009 07:45:39 GMT</lastBuildDate>
		<image>
			<url>http://www.osnews.com/images/osnews.gif</url>
			<title>OSNews.com</title>
			<link>http://www.osnews.com</link>
		</image>
		<item>
			<title>What is LLVM?</title>
			<link>http://osnews.com/thread?244925</link>
			<guid isPermaLink="true">http://osnews.com/thread?244925</guid>
			<description>Seriously; I can't understand it.  I tried to look it up, and all the information I could find out about it was very obfuscated, without giving a clear idea of what it did or where it came from.<br />
<br />
(It doesn't help that the video presentations in the site linked were only provided in Quicktime format, either...)<br />
<br />
The closest thing to an inkling I got was that it's a sort of cross-platform compiler, something that would compete with GCC, except that it incorporates GCC in it.  Is this correct, or was that site far off?</description>
			<pubDate>Sun, 03 Jun 2007 01:55:00 GMT</pubDate>
			<author>donotreply@osnews.com (Almafeta)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: What is LLVM?</title>
			<link>http://osnews.com/thread?244929</link>
			<guid isPermaLink="true">http://osnews.com/thread?244929</guid>
			<description>I know this is slightly off yopic (and I would like to know what is LLVM as well) but, since when is QuickTime an obscure format?</description>
			<pubDate>Sun, 03 Jun 2007 02:20:00 GMT</pubDate>
			<author>donotreply@osnews.com (Jules)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: What is LLVM?</title>
			<link>http://osnews.com/thread?244930</link>
			<guid isPermaLink="true">http://osnews.com/thread?244930</guid>
			<description>The only platform I have that Quicktime has been ported to is Windows XP, and my experience with Windows-based Quicktime is that it's very slow, a memory-hog, too buggy, full of advertisements for other Apple products (I hear it's got much worse after iTunes and the iProduct revolution), and I don't get the same quality as with other file formats the same size.  One of the last crashes I had with Windows was the boot after I installed Quicktime; I uninstalled it in Safe Mode, and my computer booted again.<br />
<br />
I'm told it's none of these things on a Mac.  Too bad my only Mac is a SE/30...</description>
			<pubDate>Sun, 03 Jun 2007 02:36:00 GMT</pubDate>
			<author>donotreply@osnews.com (Almafeta)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: What is LLVM?</title>
			<link>http://osnews.com/thread?244931</link>
			<guid isPermaLink="true">http://osnews.com/thread?244931</guid>
			<description>Exactly, I have been waiting for comments to appear so I could work out wth LLVM is and/or what it does... And, what do you know 0/3 so far don't have a clue either.<br />
<br />
How about more general article introductions for specialist topics?Edited 2007-06-03 02:39</description>
			<pubDate>Sun, 03 Jun 2007 02:38:00 GMT</pubDate>
			<author>donotreply@osnews.com (hhcv)</author>
			<category>Comments</category>
		</item>

		<item>
			<title> </title>
			<link>http://osnews.com/thread?244932</link>
			<guid isPermaLink="true">http://osnews.com/thread?244932</guid>
			<description>&quot;Low Level Virtual Machine, generally known as LLVM, is a compiler infrastructure designed for compile-time, link-time, run-time, and &quot;idle-time&quot; optimization of programs written in arbitrary programming languages.<br />
<br />
Using LLVM, one can create a virtual machine for languages similar to Java and JVM relation, a code generator for a specific machine architecture and optimizers independent from particular platforms or languages. LLVM is language and architecture independent; it lies between a language-specific module and a code generator for a machine. LLVM includes aggressive interprocedural optimization support, static and JIT compilers, and has many components in various stages of development (including Java bytecode and MSIL frontends, a Python frontend, a new graph coloring register allocator, and more). The JIT compiler is capable of optimising unnecessary static branches out of a program at runtime, and is therefore useful for cases where a program has many options, most of which can easily be determined unnecessary in any environment. Because of this, it is used in the OpenGL pipeline of Mac OS X 10.5 (&quot;Leopard&quot;) to provide support for missing hardware features.<br />
<br />
It currently supports the compilation of C and C++ programs, using front-ends derived from version 3.4 and 4.0.1 of the GNU Compiler Collection (GCC). LLVM is written in C++ and was started in 2000 at the University of Illinois at Urbana-Champaign. It is publicly available under the University of Illinois Open Source License [1], an OSI-approved license that is very similar to the BSD license.&quot;<br />
<br />
<a href="http://en.wikipedia.org/wiki/LLVM" rel="nofollow">http://en.wikipedia.org/wiki/LLVM</a></description>
			<pubDate>Sun, 03 Jun 2007 02:46:00 GMT</pubDate>
			<author>donotreply@osnews.com (Lazarus)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: What is LLVM?</title>
			<link>http://osnews.com/thread?244934</link>
			<guid isPermaLink="true">http://osnews.com/thread?244934</guid>
			<description>Think of a compiler as a pipeline. You stick human-readable source code in one end, and machine code comes out the other.<br />
<br />
Conventionally, this pipeline is divided up into a number of stages, which are often grouped into three parts, the &quot;front end&quot;, &quot;back end&quot;, and &quot;middle end&quot; (it's a stupid term, I know). The front end is responsible for lexing and parsing the program text into an abstract syntax tree, and then converting that syntax tree into some lower-level representation for analysis. The back end converts that lower-level representation into machine code.<br />
<br />
In between, the code is in a language-agnostic and machine-agnostic format. In other words, the code can be optimized with absolutely no regard to the source language or the target architecture. As a result, any optimization on this middle format can instantly be taken advantage of by any language front-end or any machine back-end.<br />
<br />
There are a number of useful formats that can be used for this middle stage, but the best we have now is called SSA, for &quot;static single assignment&quot;. In SSA, each variable name is used exactly once. Whenever a variable is assigned multiple times, it is subscripted, and any reference to that version of the variable carries the same subscript. This has the effect of making it explicit exactly which expressions depend on which, and so optimizing code in this form is relatively straightforward.<br />
<br />
The idea behind LLVM was &quot;lifetime program optimization&quot;. Conventional compilers (including GCC) optimize program modules, but go no further. LLVM is made to extend this not only to link-time (which some compilers do already), but to install-time, run-time, and even idle-time. After all, every computer has a slightly different configuration, and why shouldn't programs be able to optimize themselves with this information?<br />
<br />
Thus, LLVM is a combination of two things. First, it's an SSA language, which is clean, type-safe, and completely specified, in contrast to GCC's intermediate representations (there are three that I know of). And second, it's an optimizing framework and code generator. All LLVM-based optimizers read in and write out LLVM code; the code generation (which mostly consists of translating instruction names and allocating registers) happens at the very end.<br />
<br />
So, in effect, LLVM is a compiler &quot;middle&quot; and back-end. It's the second half of that compiler pipeline; you feed it in intermediate code, and it gives you heavily-optimized machine code.<br />
<br />
Of course, if you want to compile C programs, you need to convert your C code into LLVM. That's the job of a front-end. So the LLVM guys took the GCC front-end and rewrote it to generate LLVM code instead of GIMPLE. The combination of that front-end and the LLVM back-end makes a complete compiler.<br />
<br />
Unfortunately, while GCC is excellent software, it's showing signs of age. For one, the code base is just a huge mess, which isn't really a surprise when you consider that it's 20 years old. For another, it was written before compiler programmers realized how awesome SSA is; GCC has only used SSA (in the form of GIMPLE) since v4 came out in 2005. And finally, the C/C++ parser converts code into the language-agnostic GENERIC form, which is kind of useless for an IDE that wants to refactor code.<br />
<br />
LLVM took care of all of the backend problems, and the goal of clang is to take care of the front-end problems. clang's architecture is very straightforward; first, lex and parse C/C++ code into an abstract syntax tree, which other software can access; second, convert that syntax tree into LLVM code without bothering with any other intermediate representations. This has a number of useful effects; for example, because there are so many fewer intermediate stages, clang/LLVM uses far less memory than gcc (and thus can more effectively apply whole-program optimization to larger programs). But most importantly, because it generates a language-specific abstract syntax tree, you can use the front-end anywhere that you need to analyze C/C++ code, and you can be guaranteed that you'll be analyzing code in exactly the same way as the compiler.</description>
			<pubDate>Sun, 03 Jun 2007 03:30:00 GMT</pubDate>
			<author>donotreply@osnews.com (schala)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: What is LLVM?</title>
			<link>http://osnews.com/thread?244935</link>
			<guid isPermaLink="true">http://osnews.com/thread?244935</guid>
			<description>Basically, LLVM is half of a compiler/JIT; it performs optimization and code generation. (This is often called the &quot;back end&quot; of the compiler.) Since LLVM is only used by people who develop compilers and VMs, the Web site is probably aimed at them, not at the general public.<br />
<br />
LLVM has a lot of knowledge about processors, but it knows nothing about programming languages, so someone cut GCC in half and welded the GCC front end (which performs source code parsing, type checking, etc.) onto LLVM to create a C compiler called llvm-gcc. However, it sounds like these Apple people really dislike GCC, so they wrote a new C front end called clang. When you combine clang and LLVM, you get a complete C compiler that is supposedly cross-platform, super-fast, light on memory, BSD-licensed, and (best of all) completely under Apple's control.<br />
<br />
BTW, can't MPlayer/VLC play QuickTime these days?</description>
			<pubDate>Sun, 03 Jun 2007 03:33:00 GMT</pubDate>
			<author>donotreply@osnews.com (Wes Felter)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: What is LLVM?</title>
			<link>http://osnews.com/thread?244937</link>
			<guid isPermaLink="true">http://osnews.com/thread?244937</guid>
			<description>Any recent ffmpeg-based player (last year or so, IIRC) will play just about any QuickTime file you throw at it.  If you're on Windows, try FFDShow and Media Player Classic.<br />
<br />
<a href="http://ffdshow-tryout.sourceforge.net/" rel="nofollow">http://ffdshow-tryout.sourceforge.net/</a><br />
<a href="http://sourceforge.net/project/showfiles.php?group_id=82303&amp;package_id=84358&amp;release_id=403110" rel="nofollow">http://sourceforge.net/project/showfiles.php?group_id=82303&amp;pac...</a></description>
			<pubDate>Sun, 03 Jun 2007 04:01:00 GMT</pubDate>
			<author>donotreply@osnews.com (mmebane)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: What is LLVM?</title>
			<link>http://osnews.com/thread?244939</link>
			<guid isPermaLink="true">http://osnews.com/thread?244939</guid>
			<description><i>BTW, can't MPlayer/VLC play QuickTime these days?</i><br />
<br />
Where those *.mov links quicktime?<br />
If so the answere is yes,the presentations loaded perfectly in mplayer.Although they could have done a better job on the sound part.</description>
			<pubDate>Sun, 03 Jun 2007 04:51:00 GMT</pubDate>
			<author>donotreply@osnews.com (netpython)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: What is LLVM?</title>
			<link>http://osnews.com/thread?244941</link>
			<guid isPermaLink="true">http://osnews.com/thread?244941</guid>
			<description>In my experience, ffmpeg plays .mov files about as well as it does .wmv files.  Which is to say, sometimes it works well, and sometimes it doesn't at all.<br />
<br />
However, I tried and VLC played these linked movies perfectly on Windows.</description>
			<pubDate>Sun, 03 Jun 2007 05:03:00 GMT</pubDate>
			<author>donotreply@osnews.com (smitty)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Since nobody else did... Thank you for the descrip</title>
			<link>http://osnews.com/thread?244944</link>
			<guid isPermaLink="true">http://osnews.com/thread?244944</guid>
			<description>Since nobody else did. I thank you for the detailed description that you guys gave.<br />
<br />
As for QuickTime files. What ELSE do you expect Apple people to make the files into? To think they would make it into anything else would be like Microsoft making any video into RealPlayer files.</description>
			<pubDate>Sun, 03 Jun 2007 05:23:00 GMT</pubDate>
			<author>donotreply@osnews.com (Sabon)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: What is LLVM?</title>
			<link>http://osnews.com/thread?244946</link>
			<guid isPermaLink="true">http://osnews.com/thread?244946</guid>
			<description>Re BSD-licensed, and (best of all) completely under Apple's control.<br />
<br />
IMHO, this is a bit of an Oxymoron.<br />
Being BSD Licensed can't make it completely under Apple's control can it?<br />
I'd be interested to know why you think that</description>
			<pubDate>Sun, 03 Jun 2007 05:27:00 GMT</pubDate>
			<author>donotreply@osnews.com (shotsman)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: What is LLVM?</title>
			<link>http://osnews.com/thread?244948</link>
			<guid isPermaLink="true">http://osnews.com/thread?244948</guid>
			<description>Per the link on the linked page, the videos are also available on YouTube.<br />
<br />
<a href="http://www.youtube.com/view_play_list?p=AA11ACE45D6B0E4C" rel="nofollow">http://www.youtube.com/view_play_list?p=AA11ACE45D6B0E4C</a></description>
			<pubDate>Sun, 03 Jun 2007 05:36:00 GMT</pubDate>
			<author>donotreply@osnews.com (resistor)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>What LLVM Is</title>
			<link>http://osnews.com/thread?244949</link>
			<guid isPermaLink="true">http://osnews.com/thread?244949</guid>
			<description>You can find out everything about LLVM at:<br />
<br />
<a href="http://llvm.org/" rel="nofollow">http://llvm.org/</a><br />
<br />
In a nutshell, LLVM is:<br />
<br />
1. A compiler toolkit including a mid-level IR, many<br />
   optimization passes, a machine-level IR and code gen<br />
   for many targets. <br />
2. A set of libraries for building compiler related<br />
   tools such as translators, assemblers, linkers, <br />
   archive tools, etc.<br />
3. A competent C/C++/Obj-C compiler based on GCC 4.0<br />
4. A framework for program analysis and other compiler<br />
   related research.</description>
			<pubDate>Sun, 03 Jun 2007 05:38:00 GMT</pubDate>
			<author>donotreply@osnews.com (ReidSpencer)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>LLVM and OpenGL</title>
			<link>http://osnews.com/thread?244950</link>
			<guid isPermaLink="true">http://osnews.com/thread?244950</guid>
			<description>When I first read about LLVM it also sounded pretty obscure to me. But according to Zack Rusin's blog (<a href="http://zrusin.blogspot.com/2007/05/mesa-and-llvm.html" rel="nofollow">http://zrusin.blogspot.com/2007/05/mesa-and-llvm.html</a>)  it could be used as a framework to write OpenGL Shading Language vertex and fragment programs in any language (that LLVM) supports and generate GLSL code from it. Well read Zack Rusins block for more details, it is interesting to read anyway.</description>
			<pubDate>Sun, 03 Jun 2007 06:33:00 GMT</pubDate>
			<author>donotreply@osnews.com (michi)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: What is LLVM?</title>
			<link>http://osnews.com/thread?244953</link>
			<guid isPermaLink="true">http://osnews.com/thread?244953</guid>
			<description>Seems interesting...<br />
<br />
I wonder if a product like LLVM could be used to compile OS kernel code.  But I'm guessing not.</description>
			<pubDate>Sun, 03 Jun 2007 07:10:00 GMT</pubDate>
			<author>donotreply@osnews.com (Almafeta)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>LLVM vs Virtual Procvessor</title>
			<link>http://osnews.com/thread?244958</link>
			<guid isPermaLink="true">http://osnews.com/thread?244958</guid>
			<description>How does the LLVM idea compare to the &quot;Virtual processor&quot; whichi is the root of the portable TAO Group's Intent RTOS selling since many years?<br />
The comments here are very compiler oriented, but the VP is only the processor instructions set that a compiler can target.<br />
What about the VP code once it has been generated ? It needs a special &quot;loader&quot; which translates on the fly the VP code into native processor code, when it loads the bytecode from disk to memory. TAO said that this didn't affect the load time.<br />
So the LLVM concepts seems the same for me, but all explanations are very obscure, like if concept was not clear.<br />
Somebody could enlight this and show how they differ please ?</description>
			<pubDate>Sun, 03 Jun 2007 07:35:00 GMT</pubDate>
			<author>donotreply@osnews.com (sandorfal)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Since nobody else did... Thank you for the descrip</title>
			<link>http://osnews.com/thread?244961</link>
			<guid isPermaLink="true">http://osnews.com/thread?244961</guid>
			<description>These files are AVC/h.264 video and AAC audio. Both open standards - just as the mov container is open and documented. They play fine in VLC. So stop bitching.</description>
			<pubDate>Sun, 03 Jun 2007 08:00:00 GMT</pubDate>
			<author>donotreply@osnews.com (KugelKurt)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: What is LLVM?</title>
			<link>http://osnews.com/thread?244965</link>
			<guid isPermaLink="true">http://osnews.com/thread?244965</guid>
			<description>You should be able to; from what I understand, its not 'virtual machine as in the traditional sense of the word. You can also go straight to native code if you want. Its going to be interesting to see how mature LLCM is like, and much much of a role it'll play in future development of MacOS X; it will be interest if they (Apple) eventually drop GCC in favour of LLVM.</description>
			<pubDate>Sun, 03 Jun 2007 08:48:00 GMT</pubDate>
			<author>donotreply@osnews.com (kaiwai)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Read carefully!</title>
			<link>http://osnews.com/thread?244972</link>
			<guid isPermaLink="true">http://osnews.com/thread?244972</guid>
			<description>To Almafeta <br />
<br />
If you would read carefully instead of jumping strait away in a forum to complain, you would see that on this page, <a href="http://llvm.org/devmtg/2007-05/index.html" rel="nofollow">http://llvm.org/devmtg/2007-05/index.html</a>, it is clearly written: &quot;These videos are also viewable on youtube&quot;. And finally if you would bother to click on the provided link, you would arrive here <a href="http://www.youtube.com/view_play_list?p=AA11ACE45D6B0E4C" rel="nofollow">http://www.youtube.com/view_play_list?p=AA11ACE45D6B0E4C</a>. <br />
<br />
Anything else?</description>
			<pubDate>Sun, 03 Jun 2007 10:39:00 GMT</pubDate>
			<author>donotreply@osnews.com (Hakime)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>How LLVM and gcc compare to each other</title>
			<link>http://osnews.com/thread?244982</link>
			<guid isPermaLink="true">http://osnews.com/thread?244982</guid>
			<description>If you want to know how LLVM and gcc compare to each other, please start by reading this:<br />
<a href="http://gcc.gnu.org/ml/gcc/2005-11/msg00888.html" rel="nofollow">http://gcc.gnu.org/ml/gcc/2005-11/msg00888.html</a><br />
. This text was posted onto a gcc mailing list and is a proposal by one of the LLVM authors to integrate LLVM into gcc.</description>
			<pubDate>Sun, 03 Jun 2007 13:37:00 GMT</pubDate>
			<author>donotreply@osnews.com (Abacus_)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: What is LLVM?</title>
			<link>http://osnews.com/thread?244986</link>
			<guid isPermaLink="true">http://osnews.com/thread?244986</guid>
			<description>Being BSD Licensed can't make it completely under Apple's control can it?<br />
Wes mentioned cross-platform so whether Apple turns Xcode into a stand-alone IDE or keeps it on the Mac, using BSD code will allow Apple to produce a tighter IDE without worrying about having to give up any source code.  This might be the &quot;completely under Apple's control&quot; that was mentioned.Edited 2007-06-03 14:26</description>
			<pubDate>Sun, 03 Jun 2007 14:23:00 GMT</pubDate>
			<author>donotreply@osnews.com (Thomas2005)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: LLVM vs Virtual Procvessor</title>
			<link>http://osnews.com/thread?244993</link>
			<guid isPermaLink="true">http://osnews.com/thread?244993</guid>
			<description>Both LLVM and VP are fundamentally virtual machines which a compler can target (as opposed to a real machine). The difference between the two stems from the goals of each. LLVM is designed with a focus towards optimization. VP is designed to facilitate portability. The design of the two systems reflects their purposes. VP is a low-level register machine. LLVM encodes high-level things like function calls, array references, structures, etc, which provide additional information to the optimizer. LLVM code is always in SSA form it has no move instruction and a phi pseudo-operation to reflect this. VP has no phi instruction and allows arbitrary register-register copies. <br />
<br />
As for why LLVM and VP look that similar to begin with, it's because an assembly-like representation is a convenient form both for doing optimizations and for doing process-neutral distribution. They allow language-specific details to be expressed using lower-level features, and expose optimization opportunities that may be obscured under high level constructs.</description>
			<pubDate>Sun, 03 Jun 2007 15:34:00 GMT</pubDate>
			<author>donotreply@osnews.com (rayiner)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>BSD license</title>
			<link>http://osnews.com/thread?245006</link>
			<guid isPermaLink="true">http://osnews.com/thread?245006</guid>
			<description>Yes, BSD licensing means it's completely under anyone's control.  BSD is a freer license than GPL for the user of a given piece of code-- it has no political agenda, just &quot;use and share if you want to (or don't)&quot;.<br />
<br />
It looks like a win all around.  Apple gets a better compiler than gcc for the languages they care about (C/C++/ObjC), they're freed from the GPL restrictions, can more easily move to x86-64, and they retain compatibility with gcc.<br />
<br />
The only major downside I can see is that this appears to further lock Apple into Objective-C, which is one of the major things holding them back from mainstream developer adoption.  Although one of the slides explicitly called out that they're not interested in Java and such, if it came down to it I wonder if they could do a C# or Java front-end.</description>
			<pubDate>Sun, 03 Jun 2007 18:10:00 GMT</pubDate>
			<author>donotreply@osnews.com (samkass)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: BSD license</title>
			<link>http://osnews.com/thread?245025</link>
			<guid isPermaLink="true">http://osnews.com/thread?245025</guid>
			<description>&quot;Yes, BSD licensing means it's completely under anyone's control. BSD is a freer license than GPL for the user of a given piece of code-- it has no political agenda, just &quot;use and share if you want to (or don't)&quot;.&quot;<br />
<br />
I'm not sure what that means since I believe it's always been said that BSD is &quot;freer&quot; for the developer and GPL is &quot;freer&quot; for the end user via the four freedoms.  Not to talk about how they are only  copyright (DISTRIBUTION) licenses so there is no agenda placed on an end user.</description>
			<pubDate>Sun, 03 Jun 2007 22:21:00 GMT</pubDate>
			<author>donotreply@osnews.com (ubit)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: BSD license</title>
			<link>http://osnews.com/thread?245042</link>
			<guid isPermaLink="true">http://osnews.com/thread?245042</guid>
			<description><div class="cquote">I'm not sure what that means since I believe it's always been said that BSD is &quot;freer&quot; for the developer and GPL is &quot;freer&quot; for the end user via the four freedoms. </div><br />
<br />
Yes, it's been said that, but that doesn't make it true.  The bottom line is that the BSD license is pretty much completely free.  The GPL license is fairly restrictive, and the FSF is very hostile to the commercial software industry which has brought the &quot;end users&quot; most of the software in existence today (most of which has &quot;freed&quot; me from the drudgery of not having the software at all.)<br />
<br />
Anyway, to keep this discussion on-topic, it's very much in any company's interest to minimize dependencies on GPL'ed code, especially in light of GPLv3 and the FSF going off the deep end of late, and in that sense Apple's pretty much forced to move away from GCC.  I'm glad they found a solution that seems superior to GCC in all respects when they did it.  The fact that they're still sharing it despite it being BSD is also illuminating.</description>
			<pubDate>Sun, 03 Jun 2007 23:47:00 GMT</pubDate>
			<author>donotreply@osnews.com (samkass)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: BSD license</title>
			<link>http://osnews.com/thread?245061</link>
			<guid isPermaLink="true">http://osnews.com/thread?245061</guid>
			<description>&quot;Yes, it's been said that, but that doesn't make it true. The bottom line is that the BSD license is pretty much completely free. The GPL license is fairly restrictive, and the FSF is very hostile to the commercial software industry which has brought the &quot;end users&quot; most of the software in existence today (most of which has &quot;freed&quot; me from the drudgery of not having the software at all.)&quot;<br />
<br />
I'm not sure about that.  You refer to &quot;commercial software&quot;, and yet GPL'd software is also be commercial-- they just have to follow the GPL.  Compared to the default copyright that the Berne Convention gives, GPL and BSD are both free.  But they accomplish different things in terms of rights a user/developer gets, because BSD can be taken proprietary and still distributed in public (non-free in GPL parlance).  That can be a good thing in some cases, like how RMS blessed OGG going BSD, but bad in terms of free-ness in other cases.<br />
<br />
Copyrighted software didn't exist for a long time, so the GPL only restores that balance, especially today when copyright terms are too long, and when software patents threaten individual software developers. GPL creates opportunities for developers that BSD can't, e.g., the GPL allowing for use in GPL'd products, while also allowing people to license their code in proprietary products like Trolltech does to Opera, Adobe, Google Earth.  Otherwise with BSD, a company could fork QT and drive Trolltech out of business.<br />
<br />
I don't believe the FSF has gone off the deep end either.  They are protecting the four freedoms.<br />
<br />
BTW Apple and Steve Jobs have a history of not playing nice with the GPL, eg., the KHTML saga, GCC and Objective C in NeXTSTEP, etc, so I guess they don't like it very much like you've said.  I think they took Darwin closed as well when they switched from PPC to Intel that pissed off the developers.  Free software has certainly driven down the price of software to the benefit of customers, so FOSS licenses play a part in that decision.Edited 2007-06-04 01:31</description>
			<pubDate>Mon, 04 Jun 2007 01:25:00 GMT</pubDate>
			<author>donotreply@osnews.com (ubit)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: BSD license</title>
			<link>http://osnews.com/thread?245063</link>
			<guid isPermaLink="true">http://osnews.com/thread?245063</guid>
			<description>Did we really need to turn this into yet another GPL vs. BSD flamewar?  Can't we just let the subject rest and say that people prefer different options for different reasons?<br />
<br />
Yes, it's been said that, but that doesn't make it true. The bottom line is that the BSD license is pretty much completely free. The GPL license is fairly restrictive<br />
<br />
Yes, you could say that.  By the same argument I could say that Sudan is more &quot;free&quot; than the US and Western Europe, because they don't have any laws you have to follow and we do (like not murdering someone).  But I wouldn't say that, because sometimes restrictions do promote freedom.</description>
			<pubDate>Mon, 04 Jun 2007 01:39:00 GMT</pubDate>
			<author>donotreply@osnews.com (smitty)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: BSD license</title>
			<link>http://osnews.com/thread?245095</link>
			<guid isPermaLink="true">http://osnews.com/thread?245095</guid>
			<description>&quot;By the same argument I could say that Sudan is more &quot;free&quot; than the US and Western Europe, because they don't have any laws you have to follow...&quot;<br />
<br />
That's one stupid comment. Comparing the BSD license to the lack of law in a country ravaged by war is not only incorrect, it's downright insulting (for all involved).</description>
			<pubDate>Mon, 04 Jun 2007 08:39:00 GMT</pubDate>
			<author>donotreply@osnews.com (Soulbender)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: BSD license</title>
			<link>http://osnews.com/thread?245099</link>
			<guid isPermaLink="true">http://osnews.com/thread?245099</guid>
			<description>OK, perhaps that example was a little inflammatory.  I apologize to anyone who was offended.  I'm simply saying that the BSD license is like anarchy - some people might argue that = freedom, while others would argue that following a set of moral rules which benefits the community is what truly gives people freedom.  Regardless of what your definition of &quot;freedom&quot; is, I think different people have the right to prefer one over the other without constantly being attacked for how they should switch to be more free.  That goes to both sides.Edited 2007-06-04 09:04</description>
			<pubDate>Mon, 04 Jun 2007 09:03:00 GMT</pubDate>
			<author>donotreply@osnews.com (smitty)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[6]: BSD license</title>
			<link>http://osnews.com/thread?245102</link>
			<guid isPermaLink="true">http://osnews.com/thread?245102</guid>
			<description>&quot;Regardless of what your definition of &quot;freedom&quot; is, I think different people have the right to prefer one over the other without constantly being attacked for how they should switch to be more free. &quot;<br />
<br />
Amen, but I fear that a forum without license flamewars is an Utopian dream.</description>
			<pubDate>Mon, 04 Jun 2007 09:21:00 GMT</pubDate>
			<author>donotreply@osnews.com (Soulbender)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: LLVM vs Virtual Procvessor</title>
			<link>http://osnews.com/thread?245118</link>
			<guid isPermaLink="true">http://osnews.com/thread?245118</guid>
			<description>thanks, it's more clear now !</description>
			<pubDate>Mon, 04 Jun 2007 11:59:00 GMT</pubDate>
			<author>donotreply@osnews.com (sandorfal)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>HLVM is LGPL for what it's worth</title>
			<link>http://osnews.com/thread?245154</link>
			<guid isPermaLink="true">http://osnews.com/thread?245154</guid>
			<description><a href="http://hlvm.org/docs/DevelopersGuide.html" rel="nofollow">http://hlvm.org/docs/DevelopersGuide.html</a> (see the section under license)<br />
<br />
HLVM was presented at the DevMeeting as well and it is NOT a BSD-like license.  As the heading said HLVM (high-level virtual machine) is LGPL.  It is based on LLVM but in an early stage of development.</description>
			<pubDate>Mon, 04 Jun 2007 15:18:00 GMT</pubDate>
			<author>donotreply@osnews.com (SamuraiCrow)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: What is LLVM?</title>
			<link>http://osnews.com/thread?245157</link>
			<guid isPermaLink="true">http://osnews.com/thread?245157</guid>
			<description>What I mean is that the development is under Apple's conrol, so they can add whatever features they want. Also, they can choose what code to release and what to keep private because of the BSD license.</description>
			<pubDate>Mon, 04 Jun 2007 15:33:00 GMT</pubDate>
			<author>donotreply@osnews.com (Wes Felter)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>akokddy</title>
			<link>http://osnews.com/thread?245378</link>
			<guid isPermaLink="true">http://osnews.com/thread?245378</guid>
			<description>.Great find! Thanks for posting this, that's my something new for today learnt.<br />
<br />
----------------------------------------------<br />
<br />
<a href="http://www.download.com/Bingo-iPod-Converter-Suite/3000-2194_4-10679677.html" rel="nofollow">http://www.download.com/Bingo-iPod-Converter-Suite/3000-2194_4-1067...</a></description>
			<pubDate>Tue, 05 Jun 2007 06:09:00 GMT</pubDate>
			<author>donotreply@osnews.com (akokddy)</author>
			<category>Comments</category>
		</item>
	</channel>
</rss>
