 Chromium Code Reviews
 Chromium Code Reviews Issue 8698014:
  Switch to using the LLVM gold plugin as a fully linked-in object rather than DSO.  (Closed) 
  Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
    
  
    Issue 8698014:
  Switch to using the LLVM gold plugin as a fully linked-in object rather than DSO.  (Closed) 
  Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/| Index: pnacl/driver/pnacl-ar.py | 
| =================================================================== | 
| --- pnacl/driver/pnacl-ar.py (revision 7831) | 
| +++ pnacl/driver/pnacl-ar.py (working copy) | 
| @@ -15,5 +15,8 @@ | 
| from driver_log import Log | 
| def main(argv): | 
| + if len(argv) > 0: | 
| + # --plugin must come after the command flags, but before the filename. | 
| + argv = [argv[0], '--plugin=LLVMgold'] + argv[1:] | 
| env.set('ARGS', *argv) | 
| return driver_tools.RunWithLog('${AR} ${ARGS}', errexit = False) |