ldAix
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #!/bin/sh
  2. #
  3. # ldAix ldCmd ldArg ldArg ...
  4. #
  5. # This shell script provides a wrapper for ld under AIX in order to
  6. # create the .exp file required for linking.  Its arguments consist
  7. # of the name and arguments that would normally be provided to the
  8. # ld command.  This script extracts the names of the object files
  9. # from the argument list, creates a .exp file describing all of the
  10. # symbols exported by those files, and then invokes "ldCmd" to
  11. # perform the real link.
  12. #
  13. # RCS: @(#) $Id: ldAix,v 1.4 2002/09/27 01:28:26 hobbs Exp $
  14. # Extract from the arguments the names of all of the object files.
  15. args=$*
  16. ofiles=""
  17. for i do
  18.     x=`echo $i | grep '[^.].o$'`
  19.     if test "$x" != ""; then
  20. ofiles="$ofiles $i"
  21.     fi
  22. done
  23. # Extract the name of the object file that we're linking.
  24. outputFile=`echo $args | sed -e 's/.*-o ([^ ]*).*/1/'`
  25. # Create the export file from all of the object files, using nm followed
  26. # by sed editing.  Here are some tricky aspects of this:
  27. #
  28. # 1. Nm produces different output under AIX 4.1 than under AIX 3.2.5;
  29. #    the following statements handle both versions.
  30. # 2. Use the -g switch to nm instead of -e under 4.1 (this shows just
  31. #    externals, not statics;  -g isn't available under 3.2.5, though).
  32. # 3. Use the -X32_64 switch to nm on AIX-4+ to handle 32 or 64bit compiles.
  33. # 4. Eliminate lines that end in ":": these are the names of object
  34. #    files (relevant in 4.1 only).
  35. # 5. Eliminate entries with the "U" key letter;  these are undefined
  36. #    symbols (relevant in 4.1 only).
  37. # 6. Eliminate lines that contain the string "0|extern" preceded by space;
  38. #    in 3.2.5, these are undefined symbols (address 0).
  39. # 7. Eliminate lines containing the "unamex" symbol.  In 3.2.5, these
  40. #    are also undefined symbols.
  41. # 8. If a line starts with ".", delete the leading ".", since this will
  42. #    just cause confusion later.
  43. # 9. Eliminate everything after the first field in a line, so that we're
  44. #    left with just the symbol name.
  45. nmopts="-g -C"
  46. osver=`uname -v`
  47. if test $osver -eq 3; then
  48.   nmopts="-e"
  49. fi
  50. if test $osver -gt 3; then
  51.   nmopts="$nmopts -X32_64"
  52. fi
  53. rm -f lib.exp
  54. echo "#! $outputFile" >lib.exp
  55. /usr/ccs/bin/nm $nmopts -h $ofiles | sed -e '/:$/d' -e '/ U /d' -e '/[  ]0|extern/d' -e '/unamex/d' -e 's/^.//' -e 's/[  |].*//' | sort | uniq >>lib.exp
  56. # If we're linking a .a file, then link all the objects together into a 
  57. # single file "shr.o" and then put that into the archive.  Otherwise link 
  58. # the object files directly into the .a file.
  59. outputFile=`echo $args | sed -e 's/.*-o ([^ ]*).*/1/'`
  60. noDotA=`echo $outputFile | sed -e '/.a$/d'`
  61. echo "noDotA="$noDotA""
  62. if test "$noDotA" = "" ; then
  63.     linkArgs=`echo $args | sed -e 's/-o .*.a /-o shr.o /'`
  64.     echo $linkArgs
  65.     eval $linkArgs
  66.     echo ar cr $outputFile shr.o
  67.     ar cr $outputFile shr.o
  68.     rm -f shr.o
  69. else
  70.     eval $args
  71. fi