OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [scripts/] [extract_symvers.in] - Blame information for rev 749

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 742 jeremybenn
#!/bin/sh
2
 
3
# Copyright (C) 2002, 2003, 2009, 2010 Free Software Foundation, Inc.
4
#
5
# This file is part of the GNU ISO C++ Library.  This library is free
6
# software; you can redistribute it and/or modify it under the
7
# terms of the GNU General Public License as published by the
8
# Free Software Foundation; either version 3, or (at your option)
9
# any later version.
10
#
11
# This 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
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License along
17
# with this library; see the file COPYING3.  If not see
18
# .
19
 
20
 
21
if test ${#} -lt 2 || test $1 = '--help'; then
22
  echo "Usage:  extract_symvers  shared_lib output_file" 1>&2
23
  exit 1
24
fi
25
 
26
lib=$1
27
output=$2
28
 
29
# This avoids weird sorting problems later.
30
LC_ALL=C
31
export LC_ALL
32
LANG=C
33
export LANG
34
 
35
tmp=extract.$$
36
 
37
case `uname -s` in
38
SunOS)
39
  # Ensure that output on Solaris 2 matches readelf below without requiring
40
  # GNU binutils to be installed.  This requires a combination of pvs and
41
  # elfdump, which is easier handled in a perl script.
42
  perl @glibcxx_srcdir@/scripts/extract_symvers.pl ${lib} > $tmp 2>&1
43
  ;;
44
*)
45
  # GNU binutils, somewhere after version 2.11.2, requires -W/--wide to
46
  # avoid default line truncation.  -W is not supported and truncation did
47
  # not occur by default before that point.
48
  readelf="readelf --symbols"
49
  if readelf --help | grep -- --wide > /dev/null; then
50
    readelf="$readelf --wide"
51
  fi
52
  ${readelf} ${lib} |\
53
  sed -e 's/ \[: [A-Fa-f0-9]*\] //' -e '/\.dynsym/,/^$/p;d' |\
54
  egrep -v ' (LOCAL|UND) ' |\
55
  sed -e 's/ : / :_/g' |\
56
  sed -e 's/ : / :_/g' |\
57
  sed -e 's/ : / :_/g' |\
58
  awk '{ if ($4 == "FUNC" || $4 == "NOTYPE")
59
           printf "%s:%s\n", $4, $8;
60
         else if ($4 == "OBJECT" || $4 == "TLS")
61
           printf "%s:%s:%s\n", $4, $3, $8;
62
       }' | sort | uniq > $tmp 2>&1
63
#        else printf "Huh?  What is %s?\n", $8;
64
  ;;
65
esac
66
 
67
# I think we'll be doing some more with this file, but for now, dump.
68
mv $tmp $output
69
 
70
exit 0

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.