Top "Compilation" questions

Compilation is the transformation of source text into some other form or representation.

What are the benefits of a directive template function in Angularjs?

According to the documentation a template can be a function which takes two parameters, an element and attributes and returns …

javascript angularjs templates compilation directive
How to speed up Linux kernel compilation?

I have core i5 with 8gb RAM. I have VMware workstation 10.0.1 installed on my machine. I have fedora 20 Desktop Edition …

linux time compilation kernel
Elegantly call C++ from C

We develop some project in plain C (C99). But, we have one library as source codes (math library) in C++. …

c++ c shared-libraries compilation
Compile code fully in memory with javax.tools.JavaCompiler

I'm using the JavaCompiler from the javax.tools package (JDK 1.7) to compile some stuff on the fly, like this: compiler.…

java compilation javac java-compiler-api
Undefined reference error for template method

This has been driving me mad for the past hour and a half. I know it's a small thing but …

c++ templates compilation linker
Can Cython compile to an EXE?

I know what Cythons purpose is. It's to write compilable C extensions in a Python-like language in order to produce …

python compilation cython
Error: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.27'

I am building my node module (using N-API) both for Mac (10.9+) and Linux (Ubuntu 18). When I am deploying my module …

node.js linux compilation glibc node-gyp
Empty function macros

If I define a function macro with no actual body, is it like an empty string with the compiler (i.…

c++ function macros compilation
Is there a way to use gcc to convert C to MIPS?

I completed a C to MIPS conversion for a class, and I want to check it against the assembly. I …

c gcc compilation mips cross-compiling
How to compile library on C using GCC?

I made a library with the files pila.h and pila.c. I compile the file pila.c with gcc …

c gcc compilation include libraries