Questions tagged [build]

The process of converting source code files into standalone software artifact(s) that can be run on a computer

In the field of computer software, the term software build refers either to the process of converting source code files into standalone software artifact(s) that can be run on a computer, or the result of doing so.

Useful Links

23199 questions
9
votes
0 answers

Get list of active dependencies and their versions during "cargo build"

Some crates offer a pub const &str-version string, some do not. To have a general solution, I need a list of all dependencies and their versions as known to and used by cargo build during compilation so I can build my own const &str of This is my…
user2722968
  • 13,636
  • 2
  • 46
  • 67
9
votes
3 answers

Trying to build a docker container, start.sh not found

I'm trying to build a docker container, but it doesn't seem to find my start.sh. It copies it to the container, but it somehow doesnt work. This is my dockerfile: FROM ubuntu:16.04 # Install Meteor RUN apt-get update RUN apt-get install -y curl RUN…
tietze111
  • 321
  • 1
  • 2
  • 15
9
votes
2 answers

what can cause Visual Studio to rebuild my entire solution all the time?

I have a largeish solution in Visual Studio 2008 (around 30 projects, all C# and Script#), including some test projects. When I start the application or run my tests, way to often Visual Studio rebuilds everything rather than just the changed parts…
erikkallen
  • 33,800
  • 13
  • 85
  • 120
9
votes
3 answers

Bitbake build consumes more space

I recently started using Bitbake for building Yocto. Everytime I build, it consumes more space and currently I'm running out of disk space. The images are not getting overwritten. A set of new files with timestamp is getting created for every build.…
Gomu
  • 1,004
  • 5
  • 16
  • 36
9
votes
3 answers

XCode 8.0 app building ultraslow

Problem is that when building a Swift app in XCode 8, the source files are compiled quickly, but Copying Swift standard libraries takes the cake - the phase could run for several minutes (usually the whole build is around 4-5 minutes, worst cases…
Mikk Rätsep
  • 512
  • 7
  • 20
9
votes
1 answer

Fetch Build Statistics for an Application from Bamboo REST API

I am looking for the Bamboo REST API which give us all recent Build Activity of an Application within a time-frame like all build of Last_7_Days, Last_1_Day, Last_30_Days etc. Similar to the report we get in Bamboo UI for Build Activity of a Plan.…
Roopendra
  • 7,674
  • 16
  • 65
  • 92
9
votes
3 answers

Where jenkins store build files result?

I am wondering if there is a way to get the files result of a Jenkins build. I configure Jenkins to create the build, so it successfully pull my gitlab and then compile my project. So it should have my files and the compilation result stored…
Thomas CEDRINI
  • 171
  • 1
  • 3
  • 10
9
votes
0 answers

CMake run custom command after target fails to build

I know how to run a command after (or before) building a target with add_custom_command : add_custom_command(TARGET my_target POST_BUILD COMMAND echo "custom command" ) But I want to ALWAYS run this command, after the target has been…
michael.t
  • 210
  • 1
  • 3
  • 8
9
votes
2 answers

How to build 32bit python 2.6 on 64bit Linux?

I'm stuck for a full afternoon now trying to get python to build in 32bit mode. I run a 64bit Linux machine with openSUSE 11.3, I have the necessary -devel and -32bit packages installed to build applications in 32bit mode. The problem with the…
Philipp
  • 387
  • 2
  • 5
  • 8
9
votes
10 answers

Building own php framework

I am interested in building my own php framework for my personal use to make my coding life easier. I am doing this as I am fairly (sort of) use to php now, and can't seem to get use to any framework. I have an idea of making loads of functions in a…
ryryan
  • 3,890
  • 13
  • 43
  • 72
9
votes
1 answer

DOTNET1011: Framework not installed: .NETFramework

I'm adding this here because it caused me a headache this morning while fixing our build server: Executing dotnet build would show me the following errors: DOTNET1011: Framework not installed: .NETFramework,Version=v4.6.1 error NU1001: The…
ciriarte
  • 1,433
  • 2
  • 13
  • 23
9
votes
7 answers

How to tell Jenkins "Build every project in folder X"?

I have set up some folders (Using Cloudbees Folder Plugin). It sounds like the simplest possible command to be able to tell Jenkins: Build every job in Folder X. I do not want to have to manually create a comma-separated list of every job in the…
Steve Cohen
  • 4,679
  • 9
  • 51
  • 89
9
votes
1 answer

'cmake rebuild_cache' for *just* a subdirectory?

I have an issue with the generation of makefiles stage of CMake being slow which is similar to this unanswered question: CMake is slow to generate makefiles My project is made up of a top level CMakeLists.txt file which uses add_subdirectory() to…
Bruce Adams
  • 4,953
  • 4
  • 48
  • 111
9
votes
3 answers

Maven Clean, Update, Install and Eclipse Clean, Refresh, Build -- a generally correct order?

I have a few interdependent Eclipse projects. When I am trying to build my workspace, I am running into multiple issues. Supposedly, the issues should go if I do Maven clean, update, install, and Project clean, refresh, build all (I am doing…
alisa
  • 1,336
  • 2
  • 15
  • 21
9
votes
4 answers

Android Studio: Difference in size between Build APK vs Run APK

I have noticed a difference in size between the apk generated with these 2 options. why is this happening ? With the Build -> Build APK option: MyProject\app\build\outputs\apk\app-debug.apk (Size 2.997 KB) With the Run app…
seba123neo
  • 4,688
  • 10
  • 35
  • 53
1 2 3
99
100