Top "Compilation" questions

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

How to create a shared library with cmake?

I have written a library that I used to compile using a self-written Makefile, but now I want to switch …

c++ compilation cmake shared-libraries
Compiling and Running Java Code in Sublime Text 2

I am trying to compile and run Java code in Sublime Text 2. Don't just tell me to do it manually …

java compilation sublimetext2
How to fix JSP compiler warning: one JAR was scanned for TLDs yet contained no TLDs?

When starting the application or compiling JSP via ant, Tomcat 7 Jasper complains about superfluous or misplaced JAR file. I got …

logging jar compilation tomcat7 tld
Compiling dynamic HTML strings from database

The Situation Nested within our Angular app is a directive called Page, backed by a controller, which contains a div …

html dom dynamic angularjs compilation
How to run Java program in command prompt

I created a Java project to call a Web service. It has one Main java file and another class file. …

java compilation command-line-arguments command-prompt
How to fix error with xml2-config not found when installing PHP from sources?

When I try to install php 5.3 stable from source on Ubuntu (downloading compressed installation file from http://www.php.net/…

php compilation php-5.3
How can I use/create dynamic template to compile dynamic Component with Angular 2.0?

I want to dynamically create a template. This should be used to build a ComponentType at runtime and place (even …

angular typescript compilation angular2-compiler
Displaying the build date

I currently have an app displaying the build number in its title window. That's well and good except it means …

c# date time compilation
Why does changing 0.1f to 0 slow down performance by 10x?

Why does this bit of code, const float x[16] = { 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6}; const float z[16] = {1.123, 1.234, 1.345, 156.467, 1.578, 1.689, 1.790, 1.812, 1.923, 2.034, 2.145, 2.256, 2.367, 2.478, 2.589, 2.690}; float y[16]; for (int i = 0; i < 16; i++) { …

c++ performance visual-studio-2010 compilation floating-point
Java: How can I compile an entire directory structure of code ?

The use case is simple. I got the source files that were created using Eclipse. So, there is a deep …

java compilation javac directory-structure