Re: (long) An AES implementation for 32-bit platforms
From: Phil Carmody (thefatphil_demunge_at_yahoo.co.uk)
Date: 06/17/03
- Next message: John E. Hadstate: "Re: OTP and message integrity."
- Previous message: Phil Carmody: "Re: (long) An AES implementation for 32-bit platforms"
- In reply to: Shill: "Re: (long) An AES implementation for 32-bit platforms"
- Next in thread: Paul Crowley: "Re: (long) An AES implementation for 32-bit platforms"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Tue, 17 Jun 2003 01:32:56 +0300
On Mon, 16 Jun 2003 15:37:23 +0200, Shill wrote:
>> What's an "extension" on a filename?
>> My files have filenames, end of story.
>>
>> Aiming at foot before pulling trigger always bad idea.
>
> man gcc
>
> Suffixes of source file names indicate the language
> and kind of processing to be done:
>
> .c C source; preprocess, compile, assemble
> .C C++ source; preprocess, compile, assemble
> .cc C++ source; preprocess, compile, assemble
> .cxx C++ source; preprocess, compile, assemble
> .m Objective-C source; preprocess, compile, assemble
> .i preprocessed C; compile, assemble
> .ii preprocessed C++; compile, assemble
> .s Assembler source; assemble
> .S Assembler source; preprocess, assemble
> .h Preprocessor file; not usually named on command line
>
> But you knew that.
What does
gcc -x c file.C
do - C or C++ compilation?
gcc isn't a compiler, it's a suite of compilers, it makes a stab what
to compile as using the filename's suffix. It can also compile FORTRAN and
Ada. More than that, it can also compile stdin too which doesn't even have
the concept of an actual filename.
Phil
- Next message: John E. Hadstate: "Re: OTP and message integrity."
- Previous message: Phil Carmody: "Re: (long) An AES implementation for 32-bit platforms"
- In reply to: Shill: "Re: (long) An AES implementation for 32-bit platforms"
- Next in thread: Paul Crowley: "Re: (long) An AES implementation for 32-bit platforms"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|