summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Gilli <julien.gilli@joyent.com>2014-11-03 17:59:24 -0800
committerJulien Gilli <julien.gilli@joyent.com>2014-11-03 17:59:24 -0800
commit3cc2e178311a40a71ee640dd943b7742d2e5c5c5 (patch)
tree65adffdf78ab210315e12c3e429ce679040856ad
parentfbcf03975932090bbcd05fa89e11866393613b0e (diff)
downloadnode-review.tar.gz
build: remove requirement on GCC version on win32node-review
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index b09bcd07f..a13323eec 100755
--- a/configure
+++ b/configure
@@ -502,7 +502,7 @@ def configure_node(o):
o['variables']['gcc_version'] = 10 * cc_version[0] + cc_version[1]
# clang has always supported -fvisibility=hidden, right?
- if not is_clang and cc_version < (4,7,0):
+ if flavor != 'win' and not is_clang and cc_version < (4,7,0):
raise Exception(
'Need at least gcc 4.7 to compile V8, you have {version}'.format(
version=cc_version))