Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
160 views
in Technique[技术] by (71.8m points)

c++ - What does compilation flag -static really means for gcc

For example I did this:

${CROSS_COMPILE}gcc -static myinit.c -o myinit

Also I did this without static:

${CROSS_COMPILE}gcc  myinit.c -o myinit

There is no effect in my case, in both cases binary gives same result.

So what is the role of static here?

Here is the program I am compiling:

#include <stdio.h>

int
main ()
{
    printf ("
");
    printf ("Hello world from %s!
", __FILE__);
    while (1) { }
    return 0;
}

Also

${CROSS_COMPILE} is arm-xilinx-linux-gnueabi-

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

From the gcc man page, it's used to enforce static linking of libraries. Some systems will always link statically if dynamic linking is not supported.

-static On systems that support dynamic linking, this prevents linking with the shared libraries. On other systems, this option has no effect.

       This option will not work on Mac OS X unless all libraries (including libgcc.a)
       have also been compiled with -static.  Since neither a static version of
       libSystem.dylib nor crt0.o are provided, this option is not useful to most
       people.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...