Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Show actual compiler flags when building
Browse files Browse the repository at this point in the history
Make the build process output actually
useful.
  • Loading branch information
saper committed Sep 8, 2015
1 parent edbf497 commit 8e91cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function build(options) {
process.exit(1);
}

var args = [require.resolve(path.join('pangyp', 'bin', 'node-gyp.js')), 'rebuild'].concat(
var args = [require.resolve(path.join('pangyp', 'bin', 'node-gyp.js')), 'rebuild', '--verbose'].concat(
['libsass_ext', 'libsass_cflags', 'libsass_ldflags', 'libsass_library'].map(function(subject) {
return ['--', subject, '=', process.env[subject.toUpperCase()] || ''].join('');
})).concat(options.args);
Expand Down

0 comments on commit 8e91cef

Please sign in to comment.