From e0b44d688fab7f0fd48c3c7b97ee35409a92b2b2 Mon Sep 17 00:00:00 2001 From: Trevor Norris Date: Tue, 10 Feb 2015 13:10:05 -0700 Subject: [PATCH] build: fix SmartOS build The -fno-strict-aliasing flag was added to fix compilation warnings when building Node.js with GCC <= 4.4 --- deps/uv/uv.gyp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/deps/uv/uv.gyp b/deps/uv/uv.gyp index de4a591392b1..844276b302e4 100644 --- a/deps/uv/uv.gyp +++ b/deps/uv/uv.gyp @@ -64,6 +64,12 @@ 'src/version.c' ], 'conditions': [ + [ 'gcc_version<=44', { + # GCC versions <= 4.4 do not handle the aliasing in the queue + # implementation, so disable aliasing on these platforms + # to avoid subtle bugs + 'cflags': [ '-fno-strict-aliasing' ], + }], [ 'OS=="win"', { 'defines': [ '_WIN32_WINNT=0x0600',