libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[patch] ar xN fixes for HEAD


From: Peter O'Gorman
Subject: [patch] ar xN fixes for HEAD
Date: Tue, 14 Dec 2004 23:49:49 +0900
User-agent: Mozilla Thunderbird 1.0 (Macintosh/20041206)

Hi,
*sigh* looks like I'll have to port this to branch 2.0 too, as that does not have any autotest tests :(

Okay to apply this to HEAD?

Peter
--
Peter O'Gorman - http://www.pogma.com
Index: ChangeLog
2004-12-14  Peter O'Gorman  <address@hidden>

        * config/ltmain.m4sh (func_extract_archives,func_extract_an_archive): 
        On darwin, uniq can not take teh flags -cd together, thanks to Ralf
        for the fix, also ar does not accept N, so we use the fact that
        ar x libfoo.a foo.o will always extract the first foo.o in the
        archive and we then delete foo.o from the archive, which will also
        delete only the first foo.o, then rinse and repeat. Also add markers
        for the testuite.
        * m4/libtool.m4 (_LT_CONFIG): Add a marker so that we can use a sed
        expression to find the shell functions in libtool.
        * tests/functests.at: Test this feature.
        * tests/testsuite.at: Add the test.
        * tests/Makefile.am: Add the test.

from  Bob Friesenhahn  <address@hidden>
Index: config/ltmain.m4sh
===================================================================
RCS file: /cvsroot/libtool/libtool/config/ltmain.m4sh,v
retrieving revision 1.35
diff -u -3 -p -u -r1.35 ltmain.m4sh
--- config/ltmain.m4sh 10 Dec 2004 17:18:59 -0000 1.35
+++ config/ltmain.m4sh 14 Dec 2004 14:50:09 -0000
@@ -393,6 +393,7 @@ Otherwise, only FILE itself is deleted u
     exit $EXIT_SUCCESS
 }
 
+# TEST SUITE MARKER ## NON-FUNCTION
 # Parse options once, thoroughly.  This comes as soon as possible in
 # the script to make things like `libtool --version' happen quickly.
 {
@@ -535,7 +536,7 @@ Otherwise, only FILE itself is deleted u
   # anything was wrong.
   $exit_cmd $EXIT_FAILURE
 }
-
+# TEST SUITE MARKER ## BEGIN SOURCABLE
 
 # func_check_version_match
 # Ensure that we are using m4 macros, and libtool script from the same
@@ -960,6 +961,41 @@ static const void *lt_preloaded_setup() 
     fi
 }
 
+# func_extract_an_archive dir oldlib
+func_extract_an_archive () {
+    f_ex_an_ar_dir="$1"; shift
+    f_ex_an_ar_oldlib="$1"
+    func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || 
exit $?
+    if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
+     :
+    else
+      func_basename "$f_ex_an_ar_oldlib"
+      f_ex_an_ar_lib="$func_basename_result"
+      func_warning "$modename: warning: object name conflicts; renaming object 
files" 1>&2
+      func_warning "$modename: warning: to ensure that they will not 
overwrite" 1>&2
+      func_show_eval "cp \$f_ex_an_ar_oldlib \$f_ex_an_ar_dir/\$f_ex_an_ar_lib"
+      $AR t "$f_ex_an_ar_oldlib" | sort | uniq -c \
+       | $EGREP -v '^[         ]*1[    ]' | while read -r count name
+      do
+       i=1
+       while test "$i" -le "$count"
+         do
+         # Put our $i before any first dot (extension)
+         # Never overwrite any file
+         name_to="$name"
+         while test "X$name_to" = "X$name" || test -f 
"$f_ex_an_ar_dir/$name_to"
+           do
+           name_to=`$ECHO "X$name_to" | $Xsed -e "s/\([[^.]]*\)/\1-$i/"`
+         done
+         func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_lib 
'$name' && $MV '$name' '$name_to' && $AR -d \$f_ex_an_ar_lib '$name')" || exit 
$?
+         i=`expr $i + 1`
+       done
+      done
+      func_show_eval "$RM \$f_ex_an_ar_dir/\$f_ex_an_ar_lib"
+    fi
+}
+
+
 # func_extract_archives gentop oldlib ...
 func_extract_archives () {
     my_gentop="$1"; shift
@@ -991,7 +1027,7 @@ func_extract_archives () {
          darwin_archive=$my_xabs
          darwin_curdir=`pwd`
          darwin_base_archive=`basename $darwin_archive`
-         darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $GREP 
Architectures 2>/dev/null`
+         darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $GREP 
Architectures 2>/dev/null || true`
          if test -n "$darwin_arches"; then
            darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'`
            darwin_arch=
@@ -1002,10 +1038,8 @@ func_extract_archives () {
              # Remove the table of contents from the thin files.
              $AR -d 
"unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" 
__.SYMDEF 2>/dev/null || true
              $AR -d 
"unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" 
__.SYMDEF\ SORTED 2>/dev/null || true
-             cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
-             $AR -xo "${darwin_base_archive}"
-             $RM "${darwin_base_archive}"
-             cd "$darwin_curdir"
+             func_extract_an_archive 
"unfat-$$/${darwin_base_archive}-${darwin_arch}" "${darwin_base_archive}"
+             $RM 
"unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
            done # $darwin_arches
             ## Okay now we've a bunch of thin objects, gotta fatten them up :)
            darwin_filelist=`find unfat-$$ -type f | xargs basename | sort -u | 
$NL2SP`
@@ -1019,38 +1053,12 @@ func_extract_archives () {
            cd "$darwin_orig_dir"
          else
            cd $darwin_orig_dir
-           (cd $my_xdir && $AR x $my_xabs) || exit $?
+           func_extract_an_archive "$my_xdir" "$my_xabs"
          fi # $darwin_arches
        } # !$opt_dry_run
       ;;
       *)
-       # We will extract separately just the conflicting names and we will
-       # no longer touch any unique names. It is faster to leave these
-       # extract automatically by $AR in one run.
-       func_show_eval '(cd $my_xdir && $AR x $my_xabs)' 'exit $?'
-
-       if ($AR t "$my_xabs" | sort | sort -uc >/dev/null 2>&1); then
-         :
-       else
-         func_warning "object name conflicts; renaming object files"
-         func_warning "to ensure that they will not overwrite"
-         $AR t "$my_xabs" | sort | uniq -cd | while read -r count name
-         do
-           i=1
-           while test "$i" -le "$count"
-           do
-             # Put our $i before any first dot (extension)
-             # Never overwrite any file
-             name_to="$name"
-             while test "X$name_to" = "X$name" || test -f "$my_xdir/$name_to"
-             do
-               name_to=`$ECHO "X$name_to" | $Xsed -e "s/\([[^.]]*\)/\1-$i/"`
-             done
-             func_show_eval "(cd \$my_xdir && $AR xN $i \$my_xabs '$name' && 
$MV '$name' '$name_to')" 'exit $?'
-             i=`expr $i + 1`
-           done
-         done
-       fi
+        func_extract_an_archive "$my_xdir" "$my_xabs"
        ;;
       esac
       my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name 
\*.lo -print | $NL2SP`
@@ -6623,7 +6631,7 @@ func_mode_uninstall ()
 }
 
 
-
+# TEST SUITE MARKER ## NON-FUNCTION
 ## ----------- ##
 ##    Main.    ##
 ## ----------- ##
Index: m4/libtool.m4
===================================================================
RCS file: /cvsroot/libtool/libtool/m4/libtool.m4,v
retrieving revision 1.145
diff -u -3 -p -u -r1.145 libtool.m4
--- m4/libtool.m4 13 Dec 2004 16:23:11 -0000 1.145
+++ m4/libtool.m4 14 Dec 2004 14:50:11 -0000
@@ -495,7 +495,7 @@ m4_defun([_LT_CONFIG],
 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
 #
 _LT_COPYING
-
+# TEST SUITE MARKER ## BEGIN SOURCABLE
 _LT_LIBTOOL_TAGS
 
 # ### BEGIN LIBTOOL CONFIG
Index: tests/Makefile.am
===================================================================
RCS file: /cvsroot/libtool/libtool/tests/Makefile.am,v
retrieving revision 1.47
diff -u -3 -p -u -r1.47 Makefile.am
--- tests/Makefile.am 24 Nov 2004 14:55:55 -0000 1.47
+++ tests/Makefile.am 14 Dec 2004 14:50:11 -0000
@@ -23,7 +23,8 @@
 
 TESTSUITE      = testsuite
 TESTSUITE_AT   = testsuite.at \
-                 am-subdir.at
+                 am-subdir.at \
+                 functests.at
 
 EXTRA_DIST     = $(TESTSUITE) $(TESTSUITE_AT) package.m4
 
Index: tests/functests.at
===================================================================
RCS file: tests/functests.at
diff -N tests/functests.at
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ tests/functests.at 14 Dec 2004 14:50:11 -0000
@@ -0,0 +1,103 @@
+# Hand crafted tests for GNU Libtool.                         -*- Autotest -*-
+# Copyright 2004 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
+
+AT_BANNER([Libtool's shell function tests.])
+
+AT_SETUP([func_extract_archives tests])
+
+sed -n -e '/^# TEST SUITE MARKER ## BEGIN SOURCABLE$/,/^# TEST SUITE MARKER ## 
NON-FUNCTION$/p' < ${abs_top_builddir}/libtool > ltdefs
+
+AT_DATA(func_extract_archives,
+[[#! /bin/sh
+# func_extract_archives
+. ./ltdefs
+SED=${SED-sed}
+Xsed="$SED -e s/^X//"
+progname=libtool
+mode=testing
+case $host in 
+*darwin*)
+  for afile in baz foobar foobaz
+  do
+    echo "ppc $afile" > $afile.ppc.o
+    echo "m68k $afile" > $afile.m68k.o
+    echo "i386 $afile" > $afile.i386.o
+    lipo -create -output $afile.o -arch ppc $afile.ppc.o -arch m68k \
+      $afile.m68k.o -arch i386 $afile.i386.o
+    rm -f $afile.*.o
+    ar -q libfoo.a $afile.o
+    rm -f $afile.o
+  done
+  for anum in 1 2 3 4 5 6 7 8 9 10 11 12
+  do
+    echo "ppc foo $anum" > foo.ppc.o
+    echo "m68k foo $anum" > foo.m68k.o
+    echo "i386 foo $anum" > foo.i386.o
+    lipo -create -output foo.o -arch ppc foo.ppc.o -arch m68k foo.m68k.o \
+      -arch i386 foo.i386.o
+    ar -q libfoo.a foo.o
+    rm -f foo.o foo.*.o
+    echo "ppc bar $anum" > bar.ppc.o
+    echo "m68k bar $anum" > bar.m68k.o
+    echo "i386 bar $anum" > bar.i386.o
+    lipo -create -output bar.o -arch ppc bar.ppc.o -arch m68k bar.m68k.o \
+      -arch i386 bar.i386.o
+    ar -q libfoo.a bar.o
+  done
+  test -d .libs || mkdir .libs
+  func_extract_archives ".libs/libfoo" "libfoo.a"
+  for anum in 1 2 3 4 5 6 7 8 9 10 11 12
+  do
+    test -f ".libs/libfoo/libfoo.a/foo-$anum.o" || exit 1
+    $EGREP -v "foo-$anum" ".libs/libfoo/libfoo.a/foo-$anum.o" || exit 1
+    rm -f ".libs/libfoo/libfoo.a/foo-$anum.o"
+  done
+esac
+rm -f foo.o bar.o libfoo.a
+
+for afile in baz foobar foobaz
+do
+    echo "$afile" > $afile.o
+    ar -q libfoo.a $afile.o
+    rm -f $afile.o
+done
+for anum in 1 2 3 4 5 6 7 8 9 10 11 12
+do
+    echo "foo $anum" > foo.o
+    echo "bar $anum" > bar.o
+    ar -q libfoo.a foo.o bar.o
+done
+test -d .libs || mkdir .libs
+
+func_extract_archives ".libs/libfoo" "libfoo.a"
+for anum in 1 2 3 4 5 6 7 8 9 10 11 12
+do
+  test -f ".libs/libfoo/libfoo.a/foo-$anum.o" || exit 1
+  $EGREP -v "foo-$anum" ".libs/libfoo/libfoo.a/foo-$anum.o" || exit 1
+  rm -f ".libs/libfoo/libfoo.a/foo-$anum.o"
+done
+rm -rf ".libs/libfoo"
+exit 0
+]])
+
+chmod +x func_extract_archives
+
+AT_CHECK([./func_extract_archives],[0],[ignore],[ignore])
+
+AT_CLEANUP
Index: tests/testsuite.at
===================================================================
RCS file: /cvsroot/libtool/libtool/tests/testsuite.at,v
retrieving revision 1.2
diff -u -3 -p -u -r1.2 testsuite.at
--- tests/testsuite.at 29 Nov 2004 13:50:54 -0000 1.2
+++ tests/testsuite.at 14 Dec 2004 14:50:11 -0000
@@ -62,3 +62,4 @@ AT_INIT
 
 # Torturing subdir-objects builds
 m4_include([am-subdir.at])
+m4_include([functests.at])

reply via email to

[Prev in Thread] Current Thread [Next in Thread]