Top "Compilation" questions

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

Very slow compile times on Visual Studio 2005

We are getting very slow compile times, which can take upwards of 20+ minutes on dual core 2GHz, 2G Ram machines. …

c# visual-studio compilation
Difference between CC, gcc and g++?

What are the difference between the 3 compilers CC, gcc, g++ when compiling C and C++ code in terms of assembly …

c++ c gcc compilation
How to compile java package structures using javac

I am trying to compile (from the command line) a java package that imports another package of my own. I …

java command-line compilation package javac
How to compile dynamic library for a JNI application on linux?

I'm using Ubuntu 10.10 So that's what I did. Hello.java: class Hello { public native void sayHello(); static { System.loadLibrary("hellolib"); } …

java c++ linux java-native-interface compilation
How to compile openmp using g++

I have a problem about the openmp compiling. Like the following code: #include <iostream> #include <pthread.h&…

c++ compilation g++ openmp
Compiling C-code from the Command Prompt in Windows?

I want to compile C code from the Command Prompt in Windows. I have added the environment variable to the …

c windows visual-studio compilation prompt
Dev C++ compilation error, permission denied

I want to compile a code program using dev c++ compiler but my compiler didn't compile my code.The program …

c++ compilation dev-c++
What is the purpose of the "Prefer 32-bit" setting in Visual Studio and how does it actually work?

It is unclear to me how the compiler will automatically know to compile for 64-bit when it needs to. How …

c# .net visual-studio compilation cpu-architecture
Just-in-Time (JiT) vs Ahead-of-Time (AoT) compilation in Angular

I was referring this documentation and came across the compilation concept. One can use either JIT or AOT compilation. However, …

angular compilation
Determining C executable name

When we are compiling a C program the output is stored in a.out. How can we redirect the compiled …

c gcc compilation executable linkage