Questions tagged [build]

Questions about building software (e.g. compiling yourself) – if you're building your own computer, use [computer-building] instead.

Questions about building software (e.g. compiling yourself) should be covered in this tag.

If you're building and assembling your own machine, use instead.

190 questions
48
votes
2 answers

Could not find a configuration file for package "ECM" that is compatible with requested version 1.5.0

I tried to download "ECMConfig.cmake" from repository, but terminal gives me an error: "question's title + The following configuration files were considered but not accepted: ECMConfig.cmake : version is unknowed. I tried to search on Google, but…
39
votes
5 answers

Visual Studio not auto-building when I press the debug button

I'm writing code in Visual Studio but whenever I want to test the application and press the green arrow for "Start debugging", Visual Studio does not automatically recompile the active solution for me and I have to manually build the solution then…
Kurru
  • 1,744
31
votes
1 answer

Hide build results window in Sublime Text 2

After a build command (control + b) a window with results appear. Is there any way (not automatically but by shortcut or using another command) to hide it?
bluszcz
  • 421
26
votes
1 answer

How do I resolve an error about AM_PROG_LIBTOOL when building libopus from git?

I've downloaded libopus from git and tried to build it, however I get, Updating build configuration files, please wait.... configure.ac:38: warning: macro 'AM_PROG_LIBTOOL' not found in library configure.ac:38: error: possibly undefined macro:…
Evan Carroll
  • 9,518
20
votes
2 answers

How to get Colored Build Output from Make in Sublime Text 3?

How can you get color into the ST3 build output window? I'm using gccfilter to colorize my build output, but ST3 just displays the raw escape sequences. Is there any way to get it to process them? Or to remove gccfilter and just get ST3 to…
Yeraze
  • 697
14
votes
3 answers

configure: error: Unable to locate gmp.h

Per https://stackoverflow.com/a/19894267/569976 I tried the following to no avail: ln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h --with-gmp=/usr/include/x86_64-linux-gnu Both of them get me this error: configure: error: Unable to…
neubert
  • 7,574
  • 39
  • 94
  • 156
11
votes
5 answers

Why can't I find termcap library when I build gdb?

make and then failed with: configure: error: no termcap library found, but that termcap lib is just there, why can't make find it? checking for library containing zlibVersion... -lz checking zlib.h usability... yes checking zlib.h presence...…
hugemeow
  • 2,329
11
votes
3 answers

Will dual Xeons improve Android Studio build times?

I am an Android developer and spend a lot of my time waiting, so I have started considering a a dual Xeon setup. I know that, for example, for a 3D rendering solution - the additional cores improve the speed pretty much linearly, so my question is -…
9
votes
2 answers

Sublime Text 2: Working with multiple documents, building master file

I am currently working with LaTeX. I have a big document split up in several sub documents. When I am workin in a sub document, I'd love to compile the master file when pressing ctrl+b, not the file I am currently in. How do I do that?
elumbella
  • 181
8
votes
2 answers

Visual Studio 2019 msbuild directory "Current" instead of "15.0"

I installed the Visual Studio 2019 in my working machine and I noticed the following: With Visual Studio 2017, the msbuild.exe path is: C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin With Visual Studio 2019, the…
7
votes
2 answers

Schedule a job once every day on work days in jenkins

I am new to Jenkins. I need to schedule the job in Jenkins to run at 3 PM every working day (MON, TUE, WED, THU, FRI). Is the below format correct? 00 15 * * 1-5 Please advice.
Poonam
  • 73
6
votes
1 answer

Is it usually best to compile on the same machine you want to execute on?

(Note: I'm just using ffmpeg as an example, I have often wondered the same thing with other programs) I have a build script for ffmpeg which compiles in support for a few non-standard features. Now I want to use that encoder on several other…
wim
  • 3,327
5
votes
2 answers

docker build --build-arg loses value and expands to empty string

Using docker version 1.9.0 I have a docker container providing a ubuntu trusty mirror (trusty-mirror). I am trying to build a second container and want it to update and install packages from trusty-mirror. My Dockerfile for the second container…
CAB
  • 485
5
votes
3 answers

Why did rtorrent fail to build?

I am not root, so I have to build rtorrent from source and hope to install it in my home directory, but it failed, why? [mirror@hugemeow rtorrent]$ ls AUTHORS autogen.sh ChangeLog configure.ac COPYING doc INSTALL Makefile.am NEWS rak …
hugemeow
  • 2,329
5
votes
5 answers

Installing Prophet (pystan build) on Docker container (buster)

I'd like to install fbprophet in a Docker container. My Dockerfile looks like this: FROM python:3.7 RUN pip install --upgrade pip RUN pip install fbprophet Building the image errors on the "pip install fbprophet" step with this stack trace: …
1
2 3
12 13