About 25,400,000 results
Open links in new tab
  1. How does the compilation/linking process work? - Stack Overflow

    How does the compilation and linking process work? (Note: This is meant to be an entry to Stack Overflow's C++ FAQ. If you want to critique the idea of providing an FAQ in this form, then the …

  2. Why do you have to link the math library in C? - Stack Overflow

    The functions in stdlib.h and stdio.h have implementations in libc.so (or libc.a for static linking), which is linked into your executable by default (as if -lc were specified). GCC can be instructed …

  3. Telling gcc directly to link a library statically - Stack Overflow

    It feels strange to me to use -Wl,-Bstatic in order to tell gcc which libraries I want to link with statically. After all I'm telling gcc directly all other information about linking with librarie...

  4. c++ - How to properly link libraries with cmake? - Stack Overflow

    I can't get the additional libraries I am working with to link into my project properly. I am using CLion, which uses cmake to build its projects. I am trying to use several libraries in conjunctio...

  5. How can I statically link standard library to my C++ program?

    In my opinion, the disadvantages of static linking outweigh the advantages in all but very special cases. As a rule of thumb: link dynamically if you can and statically if you have to.

  6. Running gcc's steps manually, compiling, assembling, linking

    As I understand, gcc performs compiling, assembling then linking. The latter two steps are achieved by it running as and ld. I can generate the assembly code by using gcc -S test.c. …

  7. How to handle deep links in Angular? - Stack Overflow

    There has been a lot of questions about this. I've been browsing them for days. I tried everything, and neither worked. Yes, I've checked angular.io too, and that didn't work either. So please, can

  8. linux - Linking OpenSSL libraries to a program - Stack Overflow

    Linking OpenSSL libraries to a program Asked 15 years ago Modified 3 years, 5 months ago Viewed 70k times

  9. c++ - Static linking vs dynamic linking - Stack Overflow

    Jan 3, 2010 · Static linking vs Dynamic linking Static linking is a process at compile time when a linked content is copied into the primary binary and becomes a single binary.

  10. linker - Linking to so library in gcc - Stack Overflow

    Two solutions: Rename the file to libsomething.so, then use -l something. The linker automatically wraps the name with lib prefix and .so suffix (or .a suffix for static libraries). Use the option …