[cmake-commits] king committed bootstrap 1.101 1.102
cmake-commits at cmake.org
cmake-commits at cmake.org
Tue Jan 22 09:13:05 EST 2008
Update of /cvsroot/CMake/CMake
In directory public:/mounts/ram/cvs-serv11636
Modified Files:
bootstrap
Log Message:
ENH: Implement linking with paths to library files instead of -L and -l separation. See bug #3832
- This is purely an implementation improvement. No interface has changed.
- Create cmComputeLinkInformation class
- Move and re-implement logic from:
cmLocalGenerator::ComputeLinkInformation
cmOrderLinkDirectories
- Link libraries to targets with their full path (if it is known)
- Dirs specified with link_directories command still added with -L
- Make link type specific to library names without paths
(name libfoo.a without path becomes -Wl,-Bstatic -lfoo)
- Make directory ordering specific to a runtime path computation feature
(look for conflicting SONAMEs instead of library names)
- Implement proper rpath support on HP-UX and AIX.
Index: bootstrap
===================================================================
RCS file: /cvsroot/CMake/CMake/bootstrap,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -d -r1.101 -r1.102
--- bootstrap 17 Jan 2008 15:35:32 -0000 1.101
+++ bootstrap 22 Jan 2008 14:13:03 -0000 1.102
@@ -167,7 +167,7 @@
cmDocumentVariables \
cmCacheManager \
cmListFileCache \
- cmOrderLinkDirectories \
+ cmComputeLinkInformation \
"
if ${cmake_system_mingw}; then
More information about the Cmake-commits
mailing list