Open GoogleCodeExporter opened 9 years ago
Let me update the progress on this effort as of r1967. Now 'AR'/'AR.host' and
'LD'/'LD.host' are functional.
{
'make_global_settings': [
['AR', 'my_custom_ar_target'], # supported in gyp r1942 and later
['CC', 'my_custom_cc_target'],
['CXX', 'my_custom_cxx_target'],
['LD', 'my_custom_ld_target'], # supported in gyp r1942
['NM', 'my_custom_nm_target'], # not supported as of gyp r1967
['AR.host', 'my_custom_ar_host'], # supported in gyp r1942 and later
['CC.host', 'my_custom_cc_host'],
['CXX.host', 'my_custom_cxx_host],
['LD.host', 'my_custom_ld_host'], # supported since gyp r1941
['NM.host', 'my_custom_nm_host'], # not supported as of gyp r1967
],
'targets': [
{
'target_name': 'make_global_settings_test',
'type': 'static_library',
'sources': [ 'foo.c' ],
},
],
}
Original comment by yukawa@chromium.org
on 20 Aug 2014 at 8:08
Original issue reported on code.google.com by
yukawa@chromium.org
on 8 Jun 2014 at 4:47