Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | BUG: Fix cmComputeLinkInformation cycle detection. | Brad King | 2008-01-23 | 1 | -2/+3 | |
| | ||||||
* | ENH: Added CMAKE_LINK_OLD_PATHS compatibility mode for linker search paths. | Brad King | 2008-01-23 | 1 | -0/+5 | |
| | ||||||
* | BUG: Fix generation of Watcom link lines. | Brad King | 2008-01-23 | 1 | -0/+1 | |
| | | | | | - Work-around bug in Watcom command line parsing for spaces in paths. - Add 'library' option before libraries specified by file path. | |||||
* | BUG: When a library file name is linked without a path make sure the link ↵ | Brad King | 2008-01-22 | 1 | -0/+2 | |
| | | | | type is restored after the -l option. | |||||
* | ENH: Implement linking with paths to library files instead of -L and -l ↵ | Brad King | 2008-01-22 | 1 | -0/+165 | |
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. |