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

    Jul 24, 2024 · The compilation of a C++ program involves three steps: Preprocessing: the preprocessor takes a C++ source code file and deals with the #include s, #define s and other preprocessor …

  2. How does an interpreter/compiler work - Stack Overflow

    Mar 4, 2010 · Performance A compiler takes quite a long time to translate the source program to native machine code, but subsequent execution is fast An interpreter starts executing the source program …

  3. How do C/C++ compilers work? - Stack Overflow

    Jan 24, 2017 · Very good programmers don't care about how compilers work, as compilers have no say in how programming languages work. Their task is it to transform source code into instructions that …

  4. How Does A Compiler Work? - Software Engineering Stack Exchange

    In short, a compiler converts a program from a human-readable format into a machine-readable format. As to how a compiler works, that is indeed complicated. There are books and university courses on …

  5. What does a just-in-time (JIT) compiler do? - Stack Overflow

    Sep 19, 2008 · A JIT compiler runs after the program has started and compiles the code (usually bytecode or some kind of VM instructions) on the fly (or just-in-time, as it's called) into a form that's …

  6. How is Rust compiled to machine code? - Stack Overflow

    Jun 16, 2020 · The code-generation phase of the Rust compiler is mainly done by LLVM. LLVM is a set of tools for building a compiler, most notably used by the C [++] Compiler clang[++]. First, the Rust …

  7. compiler - How does garbage collection work in languages which are ...

    Jun 14, 2017 · They are both running together. How would this work with compiled languages though? My understanding is that once the compiler has compiled the source code to the target code - …

  8. How exactly does java compilation take place? - Stack Overflow

    It starts a JVM and executes the compiler. If the compiler code is written is java, then how come compiler code is executed at the compilation stage, since its the job of the jvm to execute java code. …

  9. compiler - How does code work without getting compiled or …

    Apr 29, 2021 · Sure, it doesn't ship its own compiler -- but it sure does integrate those you need via extensions. As others have already said, compilers are just programs, so they can be invoked from …

  10. c - How does a compiler work when it's not directly compiling to ...

    How does a compiler work when it's not directly compiling to machine code Ask Question Asked 6 years, 9 months ago Modified 6 years, 9 months ago