This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Size of basic types
- From: Zack Weinberg <zack at codesourcery dot com>
- To: Jean-Eric Cuendet <jec at rptec dot ch>
- Cc: gcc at gcc dot gnu dot org
- Date: Thu, 02 Dec 2004 12:59:04 -0800
- Subject: Re: Size of basic types
- References: <41AF7D2E.3060008@rptec.ch>
Jean-Eric Cuendet <jec@rptec.ch> writes:
> Hi,
> I work under 64 bits Linux on AMD64 and GCC 3.4
> I have:
> int => 32
> long => 64
> long long => 64
> void* => 64
>
> Is it possible to have:
> int => 32
> long => 32
> long long => 64
> void* => 64
No. This will never be supported.
zw