[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Tinycc-devel] strange error
From: |
Rob Landley |
Subject: |
Re: [Tinycc-devel] strange error |
Date: |
Fri, 6 Jul 2007 12:40:48 -0400 |
User-agent: |
KMail/1.9.6 |
On Friday 06 July 2007 11:21:36 Michael Huss wrote:
> Here is my crtn.o.
>
> I heard tcc builds executables that are not as well optimized as gcc's.
> Is this true? As long as tcc won't reduce my execution speed too much I
> will still use it, I am just curious.
tcc is optimized for:
1) Speed of compile time.
2) Simplicity of implementation.
Optimization of the resulting binary is down around fifth in the priority
list. The resulting binary can be twice the size of gcc's, and runs
noticeably slower. Check the website for some benchmarks and comparisons.
Rob
--
"One of my most productive days was throwing away 1000 lines of code."
- Ken Thompson.