BATCH: Run as, ar, and ranlib with BATCH_CMD so that they execute on the batch hosts, not local host.
This commit is contained in:
parent
8788d703f8
commit
aadae0b06e
1 changed files with 5 additions and 2 deletions
|
@ -371,6 +371,9 @@ else:
|
|||
if env['BATCH']:
|
||||
env['CC'] = env['BATCH_CMD'] + ' ' + env['CC']
|
||||
env['CXX'] = env['BATCH_CMD'] + ' ' + env['CXX']
|
||||
env['AS'] = env['BATCH_CMD'] + ' ' + env['AS']
|
||||
env['AR'] = env['BATCH_CMD'] + ' ' + env['AR']
|
||||
env['RANLIB'] = env['BATCH_CMD'] + ' ' + env['RANLIB']
|
||||
|
||||
if sys.platform == 'cygwin':
|
||||
# cygwin has some header file issues...
|
||||
|
|
Loading…
Reference in a new issue