Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nettle
nettle
Commits
864948a9
Commit
864948a9
authored
Oct 06, 2004
by
Niels Möller
Browse files
Ignore __i686.get_pc_thunk.bx and
similar symbols. Rev: src/nettle/testsuite/symbols-test:1.6
parent
16866320
Changes
1
Hide whitespace changes
Inline
Side-by-side
testsuite/symbols-test
View file @
864948a9
...
@@ -6,9 +6,14 @@ if [ -z "$srcdir" ] ; then
...
@@ -6,9 +6,14 @@ if [ -z "$srcdir" ] ; then
srcdir
=
`
pwd
`
srcdir
=
`
pwd
`
fi
fi
# nm on aix seems to generate bogus outbut including random binary data.
# * nm on aix seems to generate bogus outbut including random binary
# Using -g is a workaround to get rid of that. Hope nm -g is portable enough.
# data. Using -g is a workaround to get rid of that. Hope nm -g is
nm
-g
../libnettle.a |
grep
' [DRT] '
| egrep
-v
'( |^)\.?_?(_?nettle_|memxor)'
\
# portable enough.
# * gcc on x86 generates functions like __i686.get_pc_thunk.bx in pic
# code.
nm
-g
../libnettle.a |
grep
' [DRT] '
| egrep
-v
'( |^)\.?_?(_?nettle_|memxor)|get_pc_thunk'
\
|
sort
-k3
>
test1.out
|
sort
-k3
>
test1.out
if
[
-s
test1.out
]
;
then
if
[
-s
test1.out
]
;
then
...
...
Write
Preview
Supports
Markdown
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