About 194,000 results
Open links in new tab
  1. How to write a very basic compiler - Software Engineering Stack …

    How can I write a basic compiler to convert a static text into a machine readable file? The next step will be introducing variables into the compiler; imagine that we want to write a compiler …

  2. compiler - What exactly is a compile target? - Software …

    Mar 21, 2017 · Multi-target compilers also offer compiler switches to support multiple target architectures. So, a compiler target is simply the output of the compile operation.

  3. programming languages - Why doesn't Python need a compiler?

    Feb 26, 2012 · Just wondering (now that I've started with C++ which needs a compiler) why Python doesn't need a compiler? I just enter the code, save it as an exec, and run it. In C++ I …

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

    Apr 29, 2021 · Still, if an interpreter or compiler is available, Visual Studio Code will integrate with those for the final step (compilation and/or execution). Programs are composable.

  5. compiler - Does one have to write multiple "flavors" of C/C

    1 Am I correct here, thinking that I can write the C/C++ code one time, and then simply compile it (probably using different compilers, or different compiler configs) multiple times, one time for …

  6. compiler - What are the bottlenecks for the Java build speed ...

    Apr 4, 2019 · Which underlying system parameters have most influence on how fast a typical Java project (say dozens of classes and dependencies) builds? There is a lot information on …

  7. Compiler Warnings - Software Engineering Stack Exchange

    Many compilers have warning messages to warn the programmers about potential runtime, logic and performance errors, most times, you quickly fix them, but what about unfixable warnings? …

  8. compiler - Why am I advised to not inline functions that are called ...

    Sep 12, 2018 · 2 If we're talking about forceinline techniques which do actually have a high probability of forcing the compiler to inline a function rather than inline in C or C++, I would …

  9. compiler - Isn't there a chicken-and-egg issue since GCC is written …

    Dec 12, 2014 · Creating a compiler that is written in the same language that it compiles is called . The wikipedia article describes a number of ways that a compiler can be bootstrapped.

  10. compiler - Regarding a variable in C, is an assignment always ...

    Oct 3, 2017 · C* compiler in turn will allocate memory for this variable for later assignment Unlike Python for example, which is a dynamically typed language, it can infer datatype of a variable …