Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
64574d41
Commit
64574d41
authored
Apr 15, 2011
by
Rainer Orth
Committed by
Rainer Orth
Apr 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* scripts/extract_symvers.pl: Handle NOTY.
From-SVN: r172506
parent
b8388bb0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
libstdc++-v3/ChangeLog
+4
-0
libstdc++-v3/scripts/extract_symvers.pl
+3
-2
No files found.
libstdc++-v3/ChangeLog
View file @
64574d41
2011-04-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* scripts/extract_symvers.pl: Handle NOTY.
2011-04-15 Paolo Carlini <paolo.carlini@oracle.com>
* include/std/istream: Fix comments in the light of DR60 + N3168.
...
...
libstdc++-v3/scripts/extract_symvers.pl
View file @
64574d41
#!/usr/bin/perl -w
# Copyright (C) 2010 Free Software Foundation, Inc.
# Copyright (C) 2010
, 2011
Free Software Foundation, Inc.
#
# This file is part of the GNU ISO C++ Library. This library is free
# software; you can redistribute it and/or modify it under the
...
...
@@ -108,6 +108,7 @@ while (<ELFDUMP>) {
die
"unhandled symbol:\n$_"
if
(
$bind
!~
/^(GLOB|WEAK)/
or
$oth
!~
/[DP]/
);
# Adapt to readelf type naming convention.
$type
=
"NOTYPE"
if
(
$type
eq
"NOTY"
);
$type
=
"OBJECT"
if
(
$type
eq
"OBJT"
);
# Use correct symbol type.
...
...
@@ -116,7 +117,7 @@ while (<ELFDUMP>) {
close
ELFDUMP
or
die
"elfdump error"
;
foreach
$symbol
(
keys
%type
)
{
if
(
$type
{
$symbol
}
eq
"FUNC"
)
{
if
(
$type
{
$symbol
}
eq
"FUNC"
||
$type
{
$symbol
}
eq
"NOTYPE"
)
{
push
@lines
,
"$type{$symbol}:$symbol\@\@$version{$symbol}\n"
;
}
elsif
(
$type
{
$symbol
}
eq
"OBJECT"
and
$size
{
$symbol
}
==
0
)
{
push
@lines
,
"$type{$symbol}:$size{$symbol}:$version{$symbol}\n"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment