[Cmake-commits] CMake branch, next, updated. v3.6.0-rc4-702-g6d89ece
Brad King
brad.king at kitware.com
Tue Jul 5 15:20:33 EDT 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via 6d89ece6dd81dd1aa223ff11dc0420439a53f43a (commit)
via f8d4e3d7f822a506c7ed7152ea84fb0f5953ea5b (commit)
from 43305eff6fc66b3e4191e5cc5fcd98c6a41ac860 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6d89ece6dd81dd1aa223ff11dc0420439a53f43a
commit 6d89ece6dd81dd1aa223ff11dc0420439a53f43a
Merge: 43305ef f8d4e3d
Author: Brad King <brad.king at kitware.com>
AuthorDate: Tue Jul 5 15:20:32 2016 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Jul 5 15:20:32 2016 -0400
Merge topic 'windows-export-all-symbols' into next
f8d4e3d7 bindexplib: Export symbols from objects even with explicit markup
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f8d4e3d7f822a506c7ed7152ea84fb0f5953ea5b
commit f8d4e3d7f822a506c7ed7152ea84fb0f5953ea5b
Author: Yury Zhuravlev <stalkerg at gmail.com>
AuthorDate: Thu Jun 30 17:19:00 2016 +0300
Commit: Brad King <brad.king at kitware.com>
CommitDate: Tue Jul 5 15:19:56 2016 -0400
bindexplib: Export symbols from objects even with explicit markup
Drop our `HaveExportedObjects` check before dumping exports for an
object file. It is possible for only a subset of needed symbols to have
explicit markup, and re-exporting the marked symbols does not hurt.
This leaves no callers of `HaveExportedObjects`, but leave the
method in place anyway because it may be useful in the future.
Fixes #16161.
diff --git a/Source/bindexplib.cxx b/Source/bindexplib.cxx
index b179f83..181cb77 100644
--- a/Source/bindexplib.cxx
+++ b/Source/bindexplib.cxx
@@ -244,9 +244,7 @@ public:
*----------------------------------------------------------------------
*/
void DumpObjFile() {
- if(!HaveExportedObjects()) {
- this->DumpExternalsObjects();
- }
+ this->DumpExternalsObjects();
}
/*
-----------------------------------------------------------------------
Summary of changes:
Source/bindexplib.cxx | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list