Page 1 of 1

Add/Replace/Delete/Extract object files from a C6000 LIB

Posted: Fri Nov 13, 2009 3:22 am
by Neo
  • List object (.obj) files compiled to library
    ar6x.exe" -t <LIB file>
  • Add Object File
    ar6x.exe" -a <LIB file> <Obj file>
  • Replace Object File
    ar6x.exe" -r <LIB file> <Obj file>
  • Extract Object File
    ar6x.exe" -x <LIB file> <Obj file>

    I think C2000 and C5000 must have ar2x and ar5x with same command line format.
  • Delete Object File
    ar6x.exe" -d <LIB file> <Obj file>