diff options
| author | Julien Gilli <julien.gilli@joyent.com> | 2014-11-03 17:59:24 -0800 |
|---|---|---|
| committer | Julien Gilli <julien.gilli@joyent.com> | 2014-11-03 17:59:24 -0800 |
| commit | 3cc2e178311a40a71ee640dd943b7742d2e5c5c5 (patch) | |
| tree | 65adffdf78ab210315e12c3e429ce679040856ad /configure | |
| parent | fbcf03975932090bbcd05fa89e11866393613b0e (diff) | |
| download | node-review.tar.gz | |
build: remove requirement on GCC version on win32node-review
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) |
