Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 116601
b: refs/heads/master
c: f2f8458
h: refs/heads/master
i:
  116599: cbb398e
v: v3
  • Loading branch information
Steven Rostedt authored and Ingo Molnar committed Oct 14, 2008
1 parent 2f467b9 commit b6cb9b4
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ac8825ec6d941b6899331b84c7d6bf027c3bb4f1
refs/heads/master: f2f8458e751f9ae41dfec3c00a46d3e62dc38f60
41 changes: 41 additions & 0 deletions trunk/scripts/recordmcount.pl
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,36 @@
my $mcount_s = $dirname . "/.tmp_mc_" . $prefix . ".s";
my $mcount_o = $dirname . "/.tmp_mc_" . $prefix . ".o";

#
# --globalize-symbols came out in 2.17, we must test the version
# of objcopy, and if it is less than 2.17, then we can not
# record local functions.
my $use_locals = 01;
my $local_warn_once = 0;
my $found_version = 0;

open (IN, "$objcopy --version |") || die "error running $objcopy";
while (<IN>) {
if (/objcopy.*\s(\d+)\.(\d+)/) {
my $major = $1;
my $minor = $2;

$found_version = 1;
if ($major < 2 ||
($major == 2 && $minor < 17)) {
$use_locals = 0;
}
last;
}
}
close (IN);

if (!$found_version) {
print STDERR "WARNING: could not find objcopy version.\n" .
"\tDisabling local function references.\n";
}


#
# Step 1: find all the local (static functions) and weak symbols.
# 't' is local, 'w/W' is weak (we never use a weak function)
Expand Down Expand Up @@ -229,6 +259,17 @@ sub update_funcs

# is this function static? If so, note this fact.
if (defined $locals{$ref_func}) {

# only use locals if objcopy supports globalize-symbols
if (!$use_locals) {
print STDERR
"$inputfile: WARNING: referencing local function " .
"$ref_func for mcount\n" .
"\tConsider upgrading objcopy to support the globalize-" .
"symbols option.\n"
if (!$local_warn_once++);
return;
}
$convert{$ref_func} = 1;
}

Expand Down

0 comments on commit b6cb9b4

Please sign in to comment.