Hi all!!
Does anyone know the command to leave out c
standard liberies when compiling.
If I compile this code the binary file size becomes 1024.
int main(void)
{
repeat: goto repeat;
}
Compiling with gcc - leave out liberies
RE:Compiling with gcc - leave out liberies
>On 2002-05-10 15:31:21, Leadorn wrote:
>Hi all!!
>
>Does anyone know the command to leave out c
>standard liberies when compiling.
>
>If I compile this code the binary file size becomes 1024.
>
>int main(void)
> {
> repeat: goto repeat;
> }
If you read through the developer guides found on this site, I think it will tell you the -freestanding switch will do the trick.
>Hi all!!
>
>Does anyone know the command to leave out c
>standard liberies when compiling.
>
>If I compile this code the binary file size becomes 1024.
>
>int main(void)
> {
> repeat: goto repeat;
> }
If you read through the developer guides found on this site, I think it will tell you the -freestanding switch will do the trick.