diff options
author | Matt Caswell <matt@openssl.org> | 2015-12-14 10:22:58 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-12-15 17:46:48 +0100 |
commit | e863d92010f250164d0f90cb61e51e3d9429942a (patch) | |
tree | c8689ff6c2e165a3df90f96736ef87242872b024 /.gitignore | |
parent | Better splitting regexp for test_ordinals (diff) | |
download | openssl-e863d92010f250164d0f90cb61e51e3d9429942a.tar.xz openssl-e863d92010f250164d0f90cb61e51e3d9429942a.zip |
Don't export internal symbols
On Linux when creating the .so file we were exporting all symbols. We should
only be exporting public symbols. This commit fixes the issue. It is only
applicable to linux currently although the same technique may work for other
platforms (e.g. Solaris should work the same way).
This also adds symbol version information to our exported symbols.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 1f5b0878b8..8178a2214b 100644 --- a/.gitignore +++ b/.gitignore @@ -82,6 +82,8 @@ tags TAGS cscope.out *.d +crypto.map +ssl.map # Windows /tmp32 |