aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nodejs/files/0001-Add-missing-compiler-flags-for-GCC-4.3.patch
blob: 080b88f09b5bb0ddeee755bffb464d532bd823b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
From 7cb51ed25b688be08825950ce3f5ce2ad38e3f95 Mon Sep 17 00:00:00 2001
From: Chase Maupin <Chase.Maupin@ti.com>
Date: Tue, 12 Jul 2011 11:00:48 -0500
Subject: [PATCH] Add missing compiler flags for GCC 4.3

* When compiling nodejs for GCC 4.3.3 you need to also add the
  flag -fno-tree-sink.
* This patch was taken from the thread at:
    * https://github.com/joyent/node/issues/883
* Believe that no action is taken on this change upstream because
  it is GCC 4.3.3 specific and is not required for GCC 4.5

Upstream-Status: Denied

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 deps/v8/SConstruct |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct
index b2542fd..31c4c7b 100644
--- a/deps/v8/SConstruct
+++ b/deps/v8/SConstruct
@@ -210,6 +210,7 @@ LIBRARY_FLAGS = {
     },
     'arch:arm': {
       'CPPDEFINES':   ['V8_TARGET_ARCH_ARM'],
+      'CCFLAGS': ['-fno-tree-sink'],
       'unalignedaccesses:on' : {
         'CPPDEFINES' : ['CAN_USE_UNALIGNED_ACCESSES=1']
       },
-- 
1.7.0.4