Questions tagged [building]

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

463 questions
10
votes
4 answers

Signing product stage while building app in xCode 6 takes too long

Everything was working perfectly, I didn't even notice that there is signing product stage while building app because it was so quick. I didn't change anything and suddenly my app building time increased. It is stuck at signing product stage for…
NFilip
  • 427
  • 4
  • 15
10
votes
1 answer

Eclipse - building a feature project

So I'm deploying eclipse projects. I have a set of plugins that live in a 'feature project' and that feature project lives in an 'Update site' project. All goes well on first build. Sweet as a nut. When I make some changes to the feature project…
Joe
  • 4,367
  • 7
  • 33
  • 52
9
votes
2 answers

How to add a public directory in vitejs configuration file

I have a folder (named assets) with pictures, pdf files and 3d models that I want to include in the public static path at dist directory after building with Vite.js. I am using this code for the vite.config.js: export default { publicDir:…
SDEscobedo
  • 385
  • 1
  • 2
  • 11
9
votes
3 answers

Rules for building Graphical User Interface

I like the back-end programming in service and database layers. Mainly because I was never able to figure out how to build decent user interface. I'm talking about GWT and Swing. Is there something like a site with examples and good rules to follow…
MatBanik
  • 26,356
  • 39
  • 116
  • 178
9
votes
2 answers

Building workspace with android application takes too long

In the last few days I have noticed some very strange behavior in my android project: After every single little change of an xml-resource, the building of the android application's workspace takes a long time. The changing of java source files…
Tima
  • 12,765
  • 23
  • 82
  • 125
9
votes
2 answers

jquery url builder/parser

I'm searching for a jquery plugin for full URL manipulation (parsing, building). Example: var url = 'http://mypage.com/?param=1' var params = $.getParams(url) # {param: 1} var newUrl = $.newUrl(url, {param:2}) # 'http://mypage.com/?param=2' Thx.
xpepermint
  • 35,055
  • 30
  • 109
  • 163
9
votes
4 answers

Hadoop on Windows Building/ Installation Error

I am trying to install Apache Hadoop 2.7.1 on Windows x64 (8.1 and Server 2012 R2), but I am failing at goal: [INFO] Apache Hadoop Common ............................... FAILURE [ 37.925 s] In the past days, I think I followed the steps of all…
9
votes
1 answer

Prevent ASP.NET Website project from building certain directories by using Web.config?

While programming, the longest part is a build on my ASP.NET Website project is the "Building directory" process seen below. (Note: I don't have the liberty to turn this into a Web Application with a .csproj build file. Wish I did.) The contents of…
John K
  • 28,441
  • 31
  • 139
  • 229
9
votes
3 answers

Change text output color on windows for stderr

I recently found a post that gave a solution to have the text output by stderr a different color for Linux (bash) They created the following bash script script #!/bin/bash { $* 2>&1>&3|sed 's,.*,\x1B[33m&\x1B[0m,'>&2;} 3>&1 this causes the output…
gnash117
  • 1,025
  • 1
  • 13
  • 24
8
votes
2 answers

Source build vs Binary build?

Eclipse has a visual properties file tool for graphically composing you ant build.properties files. It makes reference to so-called "binary builds" as well as "source builds". The term source build makes sense: you're compiling sources. "Binary…
IAmYourFaja
  • 55,468
  • 181
  • 466
  • 756
8
votes
1 answer

Creating both static and shared C++ libraries

I'd like to build both static and shared libraries in a project. I know that shared libraries need to be be created from objects compiled with -fpic to get Position Independent Code while the static library doesn't need this. This is all fine and I…
murrekatt
  • 5,961
  • 5
  • 39
  • 63
8
votes
2 answers

kdevelop no valid executable specified

I've just installed kdevelop 4.1 , then created a normal hello world , build is ok but when i press execute it gives me (no valid executable specified) any idea ?
Ismail Marmoush
  • 13,140
  • 25
  • 80
  • 114
8
votes
2 answers

building using multiple machines

I have a huge Windows C++ project that takes a lot of time to be compiled. Do you know if there is some FREE tool being able to build using multiple pc connected together? Do you know if there is some free tool doing the same in Linux using GCC? At…
Abruzzo Forte e Gentile
  • 14,423
  • 28
  • 99
  • 173
8
votes
1 answer

Manually build logistic regression model for prediction in R

I'm attempting to test a logistic regression model (e.g. 3 coefficients for 3 predictor variables, X1,X2,X3), on a dataset. I'm aware of how to test a model after i created the model object using, for example, mymodel <- glm( Outcome ~ X1 + X2 +…
nerdlyfe
  • 487
  • 7
  • 21
7
votes
4 answers

Wireguard-apple build failed with error: ExternalBuildToolExecution failed with a nonzero exit code

I'm using Go version 1.13, Mac Catalina, and Xcode 11.7 to build. The Xcode building process cannot be finished because of the following error. Command ExternalBuildToolExecution failed with a nonzero exit code: >ExternalBuildToolExecution…
Dennis Yang
  • 73
  • 1
  • 4
1
2
3
30 31