Skip to content
This repository has been archived by the owner on Nov 27, 2017. It is now read-only.

Commit

Permalink
node 5.2.0: Fix for Linuxbrew
Browse files Browse the repository at this point in the history
Fix collect2: fatal error: cannot find 'ld'
The snapshot feature requires the gold linker.
See nodejs/node#4212
  • Loading branch information
sjackman committed Jan 13, 2016
1 parent 818f801 commit 17d7674
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Library/Formula/node.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ def install
else
args << "--with-intl=small-icu"
end
# Fix collect2: fatal error: cannot find 'ld'
# The snapshot feature requires the gold linker.
# See https://github.com/nodejs/node/issues/4212
args << "--without-snapshot" if OS.linux?

resource("icu4c").stage buildpath/"deps/icu"

Expand Down

0 comments on commit 17d7674

Please sign in to comment.