mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-07-21 00:24:20 +00:00
Update nodejs to active 10.x LTS release 10.15.1. - link atomic library - make it compatible with gcc < 4.9 Signed-off-by: Andrej Valek <andrej.valek@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
From 4bbee5e3d58bc4911999f3ec2cc5aab8ded6717b Mon Sep 17 00:00:00 2001
|
|
From: "Winker Matthias (TT-CA/ENG1)" <Matthias.Winker@de.bosch.com>
|
|
Date: Tue, 11 Dec 2018 10:44:29 +0100
|
|
Subject: [PATCH] Using native torque
|
|
|
|
---
|
|
deps/v8/gypfiles/v8.gyp | 6 ++++--
|
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/deps/v8/gypfiles/v8.gyp b/deps/v8/gypfiles/v8.gyp
|
|
index 8c78f02255..434168844e 100644
|
|
--- a/deps/v8/gypfiles/v8.gyp
|
|
+++ b/deps/v8/gypfiles/v8.gyp
|
|
@@ -2831,7 +2831,6 @@
|
|
{
|
|
'action_name': 'run_torque',
|
|
'inputs': [ # Order matters.
|
|
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)torque<(EXECUTABLE_SUFFIX)',
|
|
'../src/builtins/base.tq',
|
|
'../src/builtins/array.tq',
|
|
'../src/builtins/typed-array.tq',
|
|
@@ -2845,7 +2844,10 @@
|
|
'<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtins-typed-array-from-dsl-gen.cc',
|
|
'<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtins-typed-array-from-dsl-gen.h',
|
|
],
|
|
- 'action': ['<@(_inputs)', '-o', '<(SHARED_INTERMEDIATE_DIR)/torque-generated'],
|
|
+ 'action': [
|
|
+ 'torque',
|
|
+ '<@(_inputs)',
|
|
+ '-o', '<(SHARED_INTERMEDIATE_DIR)/torque-generated'],
|
|
},
|
|
],
|
|
}, # torque
|
|
--
|
|
2.19.2
|
|
|