About 25,300,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 …

  2. 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++.

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

    Jul 24, 2024 · 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 …

  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 …

  5. 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 …

  6. linker - What is the OPTION in the GCC's option "-Wl ... - Stack …

    Sep 23, 2013 · When I read the GCC's info manual, I found the link option -Wl,OPTION: `-Wl,OPTION' Pass OPTION as an option to the linker. If OPTION contains commas, it is split …

  7. Access symbols defined in the linker script by application

    Linker scripts symbol declarations, by contrast, create an entry in the symbol table but do not assign any memory to them. Thus they are an address without a value.

  8. No Linker option in Visual Studio Project Properties

    Jan 18, 2017 · Ive added the library directory to visual studio. My problem is i cant add the library as the option: Configuration Properties->Linker->Input Is not visible.

  9. 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 …

  10. Can I use Preprocessor Directives in .ld file - Stack Overflow

    Mar 3, 2015 · Can I use Preprocessor Directives in .ld file? I need to to use one of two sets of .ld file and wants to let Build engine deside that using macro, Can I do that?