The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / nodejs / 0002-gyp-force-link-command-to-use-CXX.patch
1 From 00d809e9305241f8636a2d75e22c493293e6971a Mon Sep 17 00:00:00 2001
2 From: Samuel Martin <s.martin49@gmail.com>
3 Date: Sun, 20 Apr 2014 15:03:01 +0200
4 Subject: [PATCH] gyp: force link command to use CXX
5
6 Signed-off-by: Samuel Martin <s.martin49@gmail.com>
7 ---
8  tools/gyp/pylib/gyp/generator/make.py | 2 +-
9  1 file changed, 1 insertion(+), 1 deletion(-)
10
11 diff --git a/tools/gyp/pylib/gyp/generator/make.py b/tools/gyp/pylib/gyp/generator/make.py
12 index 0de510e..54e4c96 100644
13 --- a/tools/gyp/pylib/gyp/generator/make.py
14 +++ b/tools/gyp/pylib/gyp/generator/make.py
15 @@ -134,7 +134,7 @@ cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) crsT $@ $(filter %.o,$^)
16  # special "figure out circular dependencies" flags around the entire
17  # input list during linking.
18  quiet_cmd_link = LINK($(TOOLSET)) $@
19 -cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ -Wl,--start-group $(LD_INPUTS) -Wl,--end-group $(LIBS)
20 +cmd_link = $(CXX.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ -Wl,--start-group $(LD_INPUTS) -Wl,--end-group $(LIBS)
21  
22  # We support two kinds of shared objects (.so):
23  # 1) shared_library, which is just bundling together many dependent libraries
24 -- 
25 1.9.2
26