mirror of https://gitee.com/bigwinds/arangodb
11 lines
412 B
Bash
Executable File
11 lines
412 B
Bash
Executable File
#!/bin/bash
|
|
# this shell script takes all current .ar - archives it finds.
|
|
# if they're thin (only contain references to the object files)
|
|
# it creates a new .ar - archive with the referenced objects
|
|
# and overwrites the original .a
|
|
# takes one argument: the directory to spider the .a files.
|
|
|
|
for lib in `find $1 -name '*.a'`; \
|
|
do ar -t ${lib} | xargs ar rvs ${lib}.new && mv -v ${lib}.new ${lib}; \
|
|
done
|