compilerprovided
Compilerprovided is a term used to describe resources, features, or libraries that are supplied by the compiler or toolchain during compilation rather than being authored in source code or packaged with a program’s runtime. In practice, this means that the compiler either generates code on behalf of the programmer or assumes certain capabilities will be available from the execution environment.
Common manifestations include intrinsic functions and other built-ins that the compiler replaces with specialized machine instructions,
In build and packaging workflows, compilerprovided dependencies are those that are required to compile the program
Advantages include smaller artifacts and clearer separation between developer-written code and compiler-generated support. Disadvantages include potential