Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
build: fix gcc version check
Browse files Browse the repository at this point in the history
  • Loading branch information
Shigeki Ohtsu authored and bnoordhuis committed Mar 3, 2012
1 parent b6595c4 commit d6f0ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -211,7 +211,7 @@ def configure_node(o):
# see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45883
# see http://code.google.com/p/v8/issues/detail?id=884
# TODO handle CC=clang
o['variables']['strict_aliasing'] = b(gcc_version() >= (False, 4, 6, 0))
o['variables']['strict_aliasing'] = b(gcc_version() >= [False, 4, 6, 0])

# TODO move to node.gyp
if sys.platform == 'sunos5':
Expand Down

0 comments on commit d6f0ecc

Please sign in to comment.