[OT] Prevent linker from unnecessary symbol resolution

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

Suppose I have a C file fun1.c containing two functions:

__________
void func1() {
        printf("\nIn function func1()\n");
}
void func2() {
        func3();
}
___________

and another called hello.c containing:

___________
void main() {
          func1();
}
___________

Is it possible to create a staticly linked binary using just these two
source files? Or do I have to provide a function definition for func3(),
even though it is not called.

Cheers,
Srikanth Madani


[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux