About 26,000,000 results
Open links in new tab
  1. c++ - What do linkers do? - Stack Overflow

    The linker works almost like a word processor's copy and paste. It "copies" out all the necessary functions that your program references and creates a single executable. Sometimes other libraries …

  2. How does the compilation/linking process work? - Stack Overflow

    Linking The linker is what produces the final compilation output from the object files the compiler produced. This output can be either a shared (or dynamic) library (and while the name is similar, they …

  3. What is compiler, linker, loader? - Stack Overflow

    Oct 22, 2010 · I wanted to know in depth meaning and working of compiler, linker and loader. With reference to any language preferably c++.

  4. What are the differences between a compiler and a linker?

    Sep 30, 2010 · 30 A compiler generates object code files (machine language) from source code. A linker combines these object code files into an executable. Many IDEs invoke them in succession, so you …

  5. linker - How does C++ linking work in practice? - Stack Overflow

    Aug 25, 2012 · How does C++ linking work in practice? What I am looking for is a detailed explanation about how the linking happens, and not what commands do the linking. There's already a similar …

  6. linker - C header files and compilation/linking - Stack Overflow

    Aug 31, 2013 · The linker knows where a symbol is defined because object files also contain the symbols defined in the translation unit. If you want more details about how linkers work I suggest you …

  7. linker - Limiting visibility of symbols when linking shared libraries ...

    Feb 27, 2017 · 67 Some platforms mandate that you provide a list of a shared library's external symbols to the linker. However, on most unixish systems that's not necessary: all non-static symbols will be …

  8. GCC linker script - split .bss section to multiple RAM regions

    May 19, 2021 · With this option I feel like I am doing manually what the linker is supposed to do. Option B: place attributes to source code to make some objects to special .bss2 section. This one's even …

  9. linker - Why does the order in which libraries are linked sometimes ...

    Sep 5, 2008 · The linker daemon is like a spaghetti colander, a bunch of symbols arrive at the colander walls and poke through the holes, and the linker must track all symbols and connect together all the …

  10. Linker Script - Placing a section at the end of a memory region

    Linker script has special variable called Location Counter which allows to modify the current address, and as such the size or address of a section or symbol, by creating gaps or holes in the address space.