Top "Compilation" questions

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

C++, variable declaration in 'if' expression

What's going on here? if(int a = Func1()) { // Works. } if((int a = Func1())) { // Fails to compile. } if((int a = Func1()) &…

c++ compilation if-statement variable-declaration
What is the difference between compile code and executable code?

I always use the terms compile and build interchangeably. What exactly do these terms stand for?

build compilation terminology
aidl is missing android studio

Environment: Mac OS 10.10.3 Android studio:1.2.11 grandle:2.2.1 the log: Information:Gradle tasks [:generateDebugSources, :generateDebugTestSources] :preBuild :preDebugBuild :checkDebugManifest :prepareDebugDependencies :compileDebugAidl FAILED Error:…

android compilation aidl
Compiling a static executable with CMake

for a project I need to create an executable that includes all the libraries that I used (opencv, cgal) in …

c++ opencv compilation cmake cgal
MinGW c++ compiler zlib1.dll missing error?

I have just started to learn C++ for school, and I'm trying to download the compiler MinGW to compile my …

c++ compilation mingw
TypeScript "Compile on save" feature not working in Visual Studio 2015

The "Compile on save" feature isn't working for me after upgrading to Visual Studio 2015. When I make a change to …

javascript visual-studio compilation typescript visual-studio-2015
How to fix fatal error: zlib.h: no such file or directory?

I'm trying to compile miniSAT on Kali Linux 64 bits but I keep getting the error message: fatal error: zlib.h: …

compilation header-files zlib
How to compile a .NET application to native code?

If I want to run a .NET application in a machine where the .NET framework is not available; Is there …

.net compilation native-code
Compiling PHP with GD and libjpeg support

I compile my own PHP, partly to learn more about how PHP is put together, and partly because I'm always …

php gd compilation centos libjpeg
new types may not be defined in a return type - C++

I am confused I think on C++ class structure. I have a .h called FxMathFunctions.h and a .cpp called …

c++ class-design compilation