diff options
author | Jeremy Huddleston <jeremy@vincent.local> | 2009-12-20 21:34:27 -0800 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-12-20 21:36:58 -0800 |
commit | 189ee75abb9c7b9c4a8bc0e678feaf8a6513a483 (patch) | |
tree | fde99de4d0a7a90663f8332b26f283dc96f6d473 | |
parent | da5741cf533ff5a3f0ee38e7d790b26e5e77ee21 (diff) | |
download | mesa-189ee75abb9c7b9c4a8bc0e678feaf8a6513a483.tar.gz |
darwin: mklib: Use lipo rather than file to figure out architectures of object files
(cherry picked from commit ad7f9d71e22fb7667c90dbbc0558939b89a45154)
-rwxr-xr-x | bin/mklib | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/bin/mklib b/bin/mklib index db97087c0a6..3bec160b40c 100755 --- a/bin/mklib +++ b/bin/mklib @@ -724,22 +724,10 @@ case $ARCH in # examine first object to determine ABI set ${OBJECTS} - ABI_PPC=`file $1 | grep ' ppc'` - ABI_I386=`file $1 | grep ' i386'` - ABI_PPC64=`file $1 | grep ' ppc64'` - ABI_X86_64=`file $1 | grep ' x86_64'` - if [ "${ABI_PPC}" ] ; then - OPTS="${OPTS} -arch ppc" - fi - if [ "${ABI_I386}" ] ; then - OPTS="${OPTS} -arch i386" - fi - if [ "${ABI_PPC64}" ] ; then - OPTS="${OPTS} -arch ppc64" - fi - if [ "${ABI_X86_64}" ] ; then - OPTS="${OPTS} -arch x86_64" - fi + ABIS=`lipo -info $1 | sed s/.*://` + for ABI in $ABIS; do + OPTS="${OPTS} -arch ${ABI}" + done if [ "${ALTOPTS}" ] ; then OPTS=${ALTOPTS} |