Building is the process by which source code is converted into executable object code.
Questions tagged [building]
463 questions
35
votes
4 answers
Building lxml for Python 2.7 on Windows
I am trying to build lxml for Python 2.7 on Windows 64 bit machine. I couldn't find lxml egg for Python 2.7 version. So I am compiling it from sources. I am following instructions on this site
http://lxml.de/build.html
under static linking section.…

Kamal
- 3,068
- 5
- 26
- 26
25
votes
4 answers
How to change the amount of building threads in Xcode?
I'm building a couple of C++ files in xcode that take a lot of memory to compile (+1 GB / file). Because I do this on my dual core laptop, xcode uses 2 threads for building. The two threads will eventually be building the files that take a lot of…

Dries Staelens
- 351
- 1
- 3
- 7
23
votes
1 answer
Visual Studio will not give me the platform option of 64 bit in configuration manager..?
I am currently trying to build a project for a 64 bit computer, but the configuration manager doesn't list 64 bit as an option. It gives me Win32, but no x64 (under "Platform"). I am using Visual Studio 2010 C++ Express.
It works on my other…

loganfarr
- 581
- 2
- 4
- 11
22
votes
6 answers
Why to build own CMS?
On my first job interview, I was asked why did I build my own CMS? Why not to use one of existing CMS, Wordpress, Joomla, Drupal...? At first, I was stunned. I couldn't immediately recall all of my reasons for building my own CMS, but this was…

ilija veselica
- 9,414
- 39
- 93
- 147
22
votes
14 answers
Android Studio is installing old apk on device
I am developing an Android app using Android Studio (0.89 Build #AI-135.1404660, Built on Sept 3,2014) using both emulator and Nexus 4 device.
I had the same issue with a version prior to that.
The problem is that after I changed my code and…

tinonetic
- 7,751
- 11
- 54
- 79
21
votes
6 answers
Android APK path is not specified for module
I have a problem. When i try to launch my project i've got error :
"ERROR: APK path is not specified for module"
I follow to this answer APK path is not specified for module "Example-Example" but that no give me result. Any more ideas?

Sergey Shustikov
- 15,377
- 12
- 67
- 119
20
votes
1 answer
Clang and LLVM - Release vs Debug builds
It seems like a simple question, but it's taking a lot of time to figure out...
In the instructions for building LLVM+Clang, a Release and a Debug configurations are mentioned. Is the debug version for:
Debugging LLVM/Clang itself,
OR
Debugging…

Evgeni Sergeev
- 22,495
- 17
- 107
- 124
19
votes
3 answers
iOS: optional code fragments for debug builds
for my App I'd like to have a debug view that I want to have only in debug-builds and not in
release builds. I don't want to change my code though. Thats why i am wondering if I can
check some compiler flag if this is a release build and exclude…

Jakob
- 1,126
- 3
- 16
- 38
17
votes
4 answers
Shouldn't you treat the bin folder as being transient?
I've always taught myself and others to think of the bin folder as being transient.
That is you should be able to delete it and next time you rebuild it gets recreated and any references get copied into it without any hassle And not to put your…

Lee Englestone
- 4,545
- 13
- 51
- 85
15
votes
1 answer
"The specified module could not be found" when building a canvas with node-gyp
I would like to install the https://github.com/LearnBoost/node-canvas/ module. I followed the windows installation instruction here
https://github.com/LearnBoost/node-canvas/wiki/Installation---Windows .
After typing: npm install canvas I got the…

Deepsy
- 3,769
- 7
- 39
- 71
14
votes
1 answer
Switching trial and pro builds with android apps in Eclipse: how to make it less painful?
I have an application for Android which comes in two forms: a trial version and a paid "pro" version. The two versions coexists in Android Market and have different package names (let's call them com.app.trial and com.app.pro). They share the same…

antonio
- 375
- 4
- 13
13
votes
4 answers
Flutter in Android Studio: Build Bundle/APK greyed out
I installed Flutter and Android Studio following this link here:
https://flutter.dev/docs/get-started/editor
I've been coding in flutter for two months now and can run my app in simulator or on a connected device no problem.
But when I try to…

Chris
- 413
- 1
- 4
- 12
13
votes
2 answers
dyld: Library not loaded: @rpath/libcudart.8.0.dylib, while building tensorflow on Mac OSX
I am building tensorflow on my Mac(an hackintosh, so I have a GPU, and already installed CUDA8.0. It works fine with building caffe, so I am sure it works.) I have already set up the environment variables as following(I have put these in…

Zen
- 133
- 1
- 7
11
votes
3 answers
Building Boost on Linux - library names
I am trying to build an application which depends on Boost. So I downloaded Boost 1_41_0 to my Linux box and followed the instructions found on the Boost site for Unix…

Andy Faibishenko
- 631
- 2
- 7
- 13
10
votes
1 answer
Can musl libc be built on OS X?
I'm trying to build musl-libc on a machine running OS X 10.11.5. Unfortunately, I get the following error while running make:
clang: warning: optimization flag '-fexcess-precision=standard' is not supported
clang: warning: optimization flag…

Jules
- 14,200
- 13
- 56
- 101