m4-ccas
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. #
  3. # A helper script for Makeasm.am .asm.lo rule.
  4. # Copyright 2001 Free Software Foundation, Inc.
  5. #
  6. # This file is part of the GNU MP Library.
  7. #
  8. # The GNU MP Library is free software; you can redistribute it and/or modify
  9. # it under the terms of the GNU Lesser General Public License as published by
  10. # the Free Software Foundation; either version 3 of the License, or (at your
  11. # option) any later version.
  12. #
  13. # The GNU MP Library is distributed in the hope that it will be useful, but
  14. # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  15. # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  16. # License for more details.
  17. #
  18. # You should have received a copy of the GNU Lesser General Public License
  19. # along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  20. # Usage: m4-ccas --m4=M4 CC ... file.asm ...
  21. #
  22. # Process file.asm with the given M4 plus any -D arguments, then
  23. # assemble with the given CC plus all arguments.
  24. #
  25. # The M4 command must be in a single --m4= argument, and will be split
  26. # on whitespace.  When CC is invoked file.asm is replaced with a
  27. # temporary .s file which is the M4 output.
  28. #
  29. # To allow parallel builds, the temp file name is based on the .asm
  30. # file name, which will be the output object filename for all uses we
  31. # put this script to.
  32. M4=
  33. CC=
  34. DEFS=
  35. ASM=
  36. SEEN_O=no
  37. for i in "$@"; do
  38.   case $i in
  39.     --m4=*)
  40.       M4=`echo "$i" | sed 's/^--m4=//'`
  41.       ;;
  42.     -D*)
  43.       DEFS="$DEFS $i"
  44.       CC="$CC $i"
  45.       ;;
  46.     *.asm)
  47.       if test -n "$ASM"; then
  48.         echo "Only one .asm file permitted"
  49.         exit 1
  50.       fi
  51.       BASENAME=`echo "$i" | sed -e 's/.asm$//' -e 's/^.*[\/:]//'`
  52.       TMP=tmp-$BASENAME.s
  53.       ASM=$i
  54.       CC="$CC $TMP"
  55.       ;;
  56.     -o)
  57.       SEEN_O=yes
  58.       CC="$CC $i"
  59.       ;;
  60.     *)
  61.       CC="$CC $i"
  62.       ;;
  63.   esac
  64. done
  65. if test -z "$M4"; then
  66.   echo "No --m4 specified"
  67.   exit 1
  68. fi
  69. if test -z "$ASM"; then
  70.   echo "No .asm specified"
  71.   exit 1
  72. fi
  73. # Libtool adds it's own -o when sending output to .libs/foo.o, but not
  74. # when just wanting foo.o in the current directory.  We need an
  75. # explicit -o in both cases since we're assembling tmp-foo.s.
  76. #
  77. if test $SEEN_O = no; then
  78.   CC="$CC -o $BASENAME.o"
  79. fi
  80. echo "$M4 $DEFS $ASM >$TMP"
  81. $M4 $DEFS $ASM >$TMP || exit
  82. echo "$CC"
  83. $CC || exit
  84. # Comment this out to preserve .s intermediates
  85. rm -f $TMP