Commit 81d6e35c authored by Damian Montero's avatar Damian Montero

Node updated to ONLY use the -m64 parameter on intel x64 chips

parent cfa29bea
......@@ -11,7 +11,12 @@ class Node_current < Package
depends_on 'python27'
def self.build
system "CC='gcc -m64' python2.7 ./configure --without-snapshot"
case ARCH
when "x86_64"
system "CC='gcc -m64' python2.7 ./configure --without-snapshot"
else
system "CC='gcc' python2.7 ./configure --without-snapshot"
end
system "make"
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment