| # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| # This script is used to unpack a .a file into object files. |
| # a - List of possible locations of the archive. |
| # f - List of files to extract. |
| while getopts "d:a:f:" flag |
| if [ "$flag" = "d" ]; then |
| elif [ "$flag" = "a" ]; then |
| lib_files="$OPTARG $lib_files" |
| elif [ "$flag" = "f" ]; then |
| obj_files="$OPTARG $obj_files" |
| if [ -z "$lib_file" ]; then |
| echo "Failed to locate a static library." |
| # Find the appropriate ar to use. |
| if [ -n "$AR_target" ]; then |
| obj_list="$($ar t $lib_file | grep '\.o$')" |
| function extract_object { |
| if [ -z "$(echo $filename | grep $1)" ]; then |
| # Only echo this if debugging. |
| # echo "Extract $filename from archive to $out_dir/$1." |
| $ar p $lib_file $filename > $out_dir/$1 |