update-abilist.sh 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #!/bin/sh
  2. # Update abilist files based on differences on one architecture.
  3. # Copyright (C) 2015-2019 Free Software Foundation, Inc.
  4. # This file is part of the GNU C Library.
  5. #
  6. # The GNU C Library is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU Lesser General Public
  8. # License as published by the Free Software Foundation; either
  9. # version 2.1 of the License, or (at your option) any later version.
  10. #
  11. # The GNU C Library is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. # Lesser General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public
  17. # License along with the GNU C Library; if not, see
  18. # <http://www.gnu.org/licenses/>.
  19. set -e
  20. export LC_ALL=C
  21. if [ $# -lt 2 ]; then
  22. echo "usage: $0 OLD-FILE NEW-FILE FILES-TO-BE-PATCHED..." 1>&2
  23. exit 2
  24. elif [ $# -eq 2 ]; then
  25. echo "info: no files to patch" 1>&2
  26. exit 0
  27. fi
  28. old_file="$1"
  29. shift
  30. new_file="$1"
  31. shift
  32. tmp_old_sorted="$(mktemp)"
  33. tmp_new_sorted="$(mktemp)"
  34. tmp_new_symbols="$(mktemp)"
  35. tmp_patched="$(mktemp)"
  36. cleanup () {
  37. rm -f -- "$tmp_old_sorted" "$tmp_new_sorted" \
  38. "$tmp_new_symbols" "$tmp_patched"
  39. }
  40. trap cleanup 0
  41. sort -u -o "$tmp_old_sorted" -- "$old_file"
  42. sort -u -o "$tmp_new_sorted" -- "$new_file"
  43. # -1 skips symbols only in $old_file (deleted symbols).
  44. # -3 skips symbols in both files (unchanged symbols).
  45. comm -1 -3 "$tmp_old_sorted" "$tmp_new_sorted" > "$tmp_new_symbols"
  46. new_symbol_count="$(wc -l < "$tmp_new_symbols")"
  47. if [ "$new_symbol_count" -eq 0 ]; then
  48. echo "info: no symbols added" 1>&2
  49. exit 0
  50. fi
  51. echo "info: $new_symbol_count symbol(s) added" 1>&2
  52. for to_be_patched in "$@" ; do
  53. sort -u -o "$tmp_patched" -- "$to_be_patched" "$tmp_new_symbols"
  54. if ! cmp -s -- "$to_be_patched" "$tmp_patched"; then
  55. echo "info: updating $to_be_patched" 1>&2
  56. cp -- "$tmp_patched" "$to_be_patched"
  57. fi
  58. done