Refers to the information that can be inferred or known at the time source code is compiled, as opposed to information that can only be inferred when source code is run.
What is the difference between run-time and compile-time?
language-agnostic runtime compile-timeI'm writing some template classes for parseing some text data files, and as such it is likly the great majority …
c++ templates compile-time typenameI am writing some tests for Javascript code and I need to dump some messages during the compile process when …
java javascript compile-time println system.outWhat's the best way to achieve compile time static asserts in C (not C++), with particular emphasis on GCC?
c gcc assert compile-time static-assertWhat is the most reliable way to find out CPU architecture when compiling C or C++ code? As far as …
c++ c detection cpu-architecture compile-timeWhat is the difference between compile time and run time dependencies in Java? It is related to class path, but …
java runtime classpath compile-timeI understand the difference between runtime and compile-time and how to differentiate between the two, but I just don't see …
java build-process runtime compile-timeI am trying to move to the new build system when compiling with Xcode 10. However, it gives following error: Cycle …
xcode10 compile-time build-systemWe can pass reference of an array to a function like: void f(int (&a)[5]); int x[5]; f(x); //…
c++ arrays compile-timeSo what is a runtime? Is it a virtual machine that executes half-compiled code that cannot run on a specific …
c# compilation runtime compile-time