Build-tools are tools designed to help and automate the process of compiling, packaging and deploying software.
Questions tagged [build-tools]
421 questions
7
votes
3 answers
How do you use browserify in a Gulp task?
I'm pretty new to Gulp, but by following this tutorial I set up a Gulp task that is meant to browserify javascript files in a particular directory and pipe them to a different directory - pretty simple. I've looked a few other tutorials, but this…

Jordan Schalm
- 147
- 2
- 13
7
votes
0 answers
Downloading build tools for VS 2012 without installing VS 2012
I have a vc++ code which i am trying to compile in VS 2013 but its giving me error
error MSB8020: The build tools for Visual Studio 2012 (Platform Toolset = 'v110') cannot be found.
To build using the v110 build tools, please install Visual Studio…

Silly Volley
- 463
- 1
- 5
- 15
7
votes
4 answers
Android build tools 1.1.0, unit test folder?
I recently installed the latest tools from google to my android project:
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
…

E-Kami
- 2,529
- 5
- 30
- 50
7
votes
2 answers
How to replace in stream using Gulp?
I try to switch from Grunt to Gulp and I have an issue:
I read two streams from two files
var fileStream = gulp.src(file);
var injectionStream = gulp.src(injection)
.pipe(replace('#class-name#', argv.cname));
If my console argument "--remove" is…

Svitlana
- 2,324
- 4
- 22
- 31
6
votes
2 answers
Unable to Install Erlang using asdf on OSX 10.15.4
I am running into an issue that I haven't previously had with over 6+ months of using asdf on osx. I need to install Erlang 21.3.7.1 and when I do I get this error output from the console that I honestly don't know how to…

user3236418
- 67
- 1
- 5
6
votes
0 answers
Portable Visual Studio build tools kit and cmake
I am trying to create a CMakeLists.txt which can generate VS solution for the project and compile it using build tools from a portable Visual Studio kit.
Unfortunately, every time I try to run cmake still detects the installed MSVC…

Maxim
- 61
- 4
6
votes
2 answers
Failed to find Build Tools revision 27.1.1. When I try to download, says it has no download link:
This is my build.gradle file:
buildscript {
repositories {
google()
maven { url 'https://maven.fabric.io/public' }
maven { url 'https://maven.google.com' }
maven { url 'http://dl.bintray.com/amulyakhare/maven' }
maven { url…

rosu alin
- 5,674
- 11
- 69
- 150
6
votes
1 answer
MSBuild 15 Tools Version not accepted
I have installed the MSBuild (15.4.0) tools for Visual Studio 2017 on a build server. To do this I used the link entitled "Build Tools for Visual Studio 2017" from Visual Studio Downloads
The path to the MSBuild.exe is:
C:\Program Files…

DrGriff
- 4,394
- 9
- 43
- 92
6
votes
1 answer
Failed to resolve com.android.support.test:runner:1.0.0 and 'com.android.support.test.espresso:espresso-core:3.0.0'
This is my build.gradle(app)
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply…

Debanjan
- 2,817
- 2
- 24
- 43
6
votes
4 answers
Cordova Build fails, buildToolsVersion is not specified
This is the exact error I've been getting;
F:\XXX\XXX\XXX\myApp-1>cordova build android
ANDROID_HOME=L:\android-sdks
JAVA_HOME=C:\Program Files\Java\jdk1.8.0_45
Failed to notify ProjectEvaluationListener.afterEvaluate(), but primary configur
ation…

Mostafa El Beheiry
- 63
- 1
- 1
- 4
6
votes
4 answers
App crashing on Android API less than 5.0(lollipop)
The problem I am facing is that my android application works well on devices having API 5.0 and above but crashes on devices having Kitkat(4.4) and its corresponding lower versions.I know that its somehow related to the build tools in my gradle…

Android solutions
- 111
- 1
- 1
- 7
6
votes
2 answers
Cannot use GLOB with JSHint in Windows?
I'm doing a PoC of NPM as a build tool (http://blog.keithcirkel.co.uk/how-to-use-npm-as-a-build-tool/). I'm fairly new using NPM. For now, I only have JSHint and Mocha installed. My packagae.json is attached. Now, when I run "npm run lint" in…

flexapp
- 73
- 6
6
votes
1 answer
With scons, how do you link to prebuilt libraries?
I recently started using scons to build several small cross-platform projects. One of these projects needs to link against pre-built static libraries... how is this done?
In make, I'd just append "link /LIBPATH:wherever libstxxl.lib" on windows,…

oz10
- 153,307
- 27
- 93
- 128
5
votes
1 answer
'ERROR: Failed to resolve: com.android.support:appcompat-v7:29.0.1'
I want to try Intellij Platform for android development but even after fresh it shows gradle failures. Please help.
I have tried tweaking the line
implementation 'com.android.support:appcompat-v7:29.+'
to some other versions but to no avail.
Here…

Sandipan Majhi
- 114
- 1
- 10
5
votes
1 answer
Why does Rust require a C++ toolchain to produce a Rust binary, while languages like Go do not have this requirement?
Compiling a Rust file with rustc foo.rs fails if I don't have a C++ toolchain installed. But when compiling a Go program, such a toolchain is not required. Why is that?

JackSparrow123
- 1,360
- 2
- 18
- 23