Line 0
Link Here
|
|
|
1 |
--- node_modules/node-gyp/gyp/pylib/gyp/generator/make.py.orig 2015-11-14 19:47:53 UTC |
2 |
+++ node_modules/node-gyp/gyp/pylib/gyp/generator/make.py |
3 |
@@ -2059,9 +2059,9 @@ def GenerateOutput(target_list, target_d |
4 |
'AR.target': GetEnvironFallback(('AR_target', 'AR'), '$(AR)'), |
5 |
'CXX.target': GetEnvironFallback(('CXX_target', 'CXX'), '$(CXX)'), |
6 |
'LINK.target': GetEnvironFallback(('LINK_target', 'LINK'), '$(LINK)'), |
7 |
- 'CC.host': GetEnvironFallback(('CC_host',), 'gcc'), |
8 |
+ 'CC.host': GetEnvironFallback(('CC_host',), 'cc'), |
9 |
'AR.host': GetEnvironFallback(('AR_host',), 'ar'), |
10 |
- 'CXX.host': GetEnvironFallback(('CXX_host',), 'g++'), |
11 |
+ 'CXX.host': GetEnvironFallback(('CXX_host',), 'c++'), |
12 |
'LINK.host': GetEnvironFallback(('LINK_host',), '$(CXX.host)'), |
13 |
}) |
14 |
|