Questions tagged [building]

Building is the process by which source code is converted into executable object code.

463 questions
7
votes
1 answer

How and when should I use _POSIX_C_SOURCE in C programs?

I've gotten myself into having to maintain some C project which should also compile on older platforms. At the moment, for some platforms, the macro _POSIX_C_SOURCE is defined. I was wondering - if it's acceptable to have it defined, should I not…
einpoklum
  • 118,144
  • 57
  • 340
  • 684
7
votes
5 answers

Cordova iOS: xcrun can't find "PackageApplication" after xcode update

This morning, xcode got updated to version 8.3 on my osx building device. Since then, when I try to build my iOs app with Cordova, I get the following error at the end of the building process: [exec] [exec] ** BUILD SUCCEEDED ** [exec] [exec]…
Kickar
  • 165
  • 1
  • 4
  • 9
7
votes
1 answer

How to see what g++ command-lines Boost.Build invokes (1.33.1)

I'm scratching my head, trying to figure out why the import libraries are not generated when I build the Boost libraries on my machine. More specifically, building the DLLs works fine, but where I would previously (i.e. before I reinstalled my…
Carl Seleborg
  • 13,125
  • 11
  • 58
  • 70
6
votes
3 answers

How to avoid Visual Studio rebuild after switching Git branches back and forth?

I use Git for source control and build with Visual Studio 2008. Mostly I build on one branch (master). Often I need to do a code review and switch to another branch (develop) temporarily. I do not build code that I review and after review is…
Sergiy Belozorov
  • 5,856
  • 7
  • 40
  • 73
6
votes
2 answers

Recompilation of dependencies with Maven - possible? Any performance boost?

I was thinking about dependencies in Maven. Maven downloads them but it is unknown for what target version of JVM are they compiled for and with what compiler. This raises two questions: Would dependency recompilation bring faster dependency…
Aries
  • 353
  • 1
  • 10
6
votes
2 answers

Exception in thread "pool-1-thread-1" java.lang.NoClassDefFoundError: org/eclipse/aether/spi/connector/Transfer$State

Hii everyone I am trying to generate automated Maven build script for android project i'm using Maven 3.2.5 for generating build and i'm getting following issues while trying to generate script for sample helloworld project Exception in thread…
sainath
  • 63
  • 1
  • 5
6
votes
1 answer

Building a Haskell program depending on iconv under windows

I have a project depending on iconv, because I need to work with cp1251 codepage. Here is the minimal implementation of the problem project. I has installed iconv from here and successfully installed haskell package "iconv" like this cabal install…
s9gf4ult
  • 862
  • 6
  • 20
5
votes
1 answer

Xcode building application to ipa from command line

I'm unable to build ipa signed file from command line. First a few words about my environment: 1. Application I've prepared a simple application for iPad from template "Master-Detail Application". Changed nothing in code, changed nothing in…
Ertai
  • 1,735
  • 2
  • 23
  • 29
5
votes
5 answers

Updating the application with a new .net dll gives me FileLoadException?

I have a .net 3.5 application with many dlls, I tried to rebuild specific dll without building the whole application, but after replacing the old one with the new, the application throws exception as it could not load the new…
Ahmed
  • 7,148
  • 12
  • 57
  • 96
5
votes
3 answers

Unexpected slow build of C# project in VS 2010

I'm working on a pretty simple C# solution with two projects: a class library and an installer for the library. Building the class library itself takes about a second. Building the installer, however, takes an unpredictably/incredibly long time.…
svidgen
  • 13,744
  • 4
  • 33
  • 58
5
votes
3 answers

How do I resolve error MSB6006: "cmd.exe" exited with code 3?

I am getting the following error when building my code: C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(151,5): error MSB6006: "cmd.exe" exited with code 3. Done executing task "CustomBuild" -- FAILED.…
5
votes
1 answer

Post-build powershell script

I have the following post-build event: powershell Set-ExecutionPolicy Unrestricted powershell -file "$(SolutionDir)Obfuscation\_obfuscate.ps1" "$(SolutionDir)" "$(ProjectDir)" powershell Set-ExecutionPolicy Restricted and PS script beginning…
Dzmitry Martavoi
  • 6,867
  • 6
  • 38
  • 59
5
votes
2 answers

JavaFX2 FXML how to add elements (e.g. Buttons) dynamically

So, what I want to do is, creating a custom element by using fxml and then add a couple of instances of that element into a container, like GridPane. The "new" operators does not work for me, because I would like to use the @fxml annotator to get…
user1562969
  • 155
  • 1
  • 2
  • 7
5
votes
3 answers

Building an app bundle for a non-Cocoa C++ Mac Project

I am building a C++ OpenGL card game in Xcode 4.3.3, with the intention of running it on both 64-bit and 32-bit Macs, which is not my problem. My problem is that I have reached a point in the development of the program where I would like to test…
William Gilmour
  • 138
  • 2
  • 6
4
votes
3 answers

where is the ghc 7.4.1 branch?

Sorry this is a dumb question; how do I download the GHC 7.4.1 branch? I want to play around with the ConstraintKinds. The default branch seems to say it's version 7.3. I did look around a little bit, but didn't see anything helpful, or any branch…
gatoatigrado
  • 16,580
  • 18
  • 81
  • 143
1 2
3
30 31