重新编译
因此,微软还采用面向配备 ARM系列SoC的笔记本电脑重新编译(Recompile)的驱动软件,进行了用精工爱普生制造的打印机打印Word文档的演示。
再编译
... recompilation,incremental增量再编译 recompile再编译 reconfigurablehardware可再配置硬件,可重构硬件 ...
重编译
...SQL SERVER 临时表导致存储过程重编译(recompile)的一些探讨 SQLSERVER为了确保返回正确的值,或者处于性能上的顾虑,有意不重用缓存在内存里的执行计划,而重新编译执行计划...
编译
... devclop 发达 separate 各别的 recompile 编译 ...
recompile:
re- + compile
A compiler is a computer program (or set of programs) that transforms source code written in a programming language (the source language) into another computer language (the target language, often having a binary form known as object code). The most common reason for converting a source code is to create an executable program.The name "compiler" is primarily used for programs that translate source code from a high-level programming language to a lower level language (e.g., assembly language or machine code). If the compiled program can run on a computer whose CPU or operating system is different from the one on which the compiler runs, the compiler is known as a cross-compiler. More generally, compilers are a specific type of translators.A program that translates from a low level language to a higher level one is a decompiler. A program that translates between high-level languages is usually called a source-to-source compiler or transpiler. A language rewriter is usually a program that translates the form of expressions without a change of language. The term compiler-compiler is sometimes used to refer to a parser generator, a tool often used to help create the lexer and parser.A compiler is likely to perform many or all of the following operations: lexical analysis, preprocessing, parsing, semantic analysis (Syntax-directed translation), code generation, and code optimization. Program faults caused by incorrect compiler behavior can be very difficult to track down and work around; therefore, compiler implementors invest significant effort to ensure compiler correctness.