Topic: Link-only?
A problem happening a lot for me:
My Fortran application project ('P', say) uses, inter alia, a custom-made library (say, 'L').
Whilst developing (P), I find a need to edit one of the routines in (L).
I therefore switch to (L), edit the required routine, re-build (L), and switch back to (P).
I have made no changes to (P) so when I rebuild (P), nothing gets re-compiled.
When re-building (P), I can't tell from the information appearing in the Build Status whether the libraries are all re-seached and re-linked. Jeff, are they, and can this be made clearer?
Given that (P) has no way of knowing that t(L) has changed, I have been assuming that the libraries are not re-linked in these circumstances. I therefore need to force them to re-link. The only way I can find to do this is to CLEAN (P) and then re-build (P). This, however, takes ages in a big project, because of the time it takes to re-compile (needlessly) all the routines of (P). Is there a way to force a re-build to re-link all libraries?
---
John