[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Tinycc-devel] difference between gcc & tcc
From: |
Piotr Skamruk |
Subject: |
Re: [Tinycc-devel] difference between gcc & tcc |
Date: |
Thu, 31 Mar 2005 11:04:28 +0200 |
User-agent: |
Mutt/1.5.8i |
* amit gupta, (address@hidden) napisał:
>
> can anyone highlight/enumerate the advantages as well as disadvantages of gcc
> & tcc over each other?
> i am researching both the compilers and it wud be helpful if someone could
> enumerate them to me.
tcc:
+ VERY quickly produces code
+ libtcc
+ useable as a scripting language...
+ compatybility with standards
+ compatybility with some gcc extensions
+ licence :)
+ portabilyty (easy to adapt to some new system/hardware)
- code works but it's not so very optimized
- to see generated assembly U need some external utils like objdump
gcc:
+ U have this mostly everywhere under almost every distribution of some
free systems
+ gazylions of already supported architectures...
+ compatybility with standards and all gcc extensions :)
+ compiles linux kernel without source code modyfication :)
+ supporting diffrend languages (java, c++ and others)
+ well documented
- works so sloooowly
- generated x86 code not wery optimized... (look at code generated by visual c
4 comparsion)
something else?