Tagged Questions

7
votes
13answers
1k views

How to improve link performance for a large C++ application in VS2005

We have fairly large C++ application which is composed of about 60 projects in Visual Studio 2005. It currently takes 7 minutes to link in Release mode and I would like to try to r …
1
vote
2answers
131 views

How best to alleviate scenarios that trigger non-incremental linking (MSVS)

While incremental linking addresses much of the time spent linking, even for very large projects, I find the incremental linker in MSVS to be pretty haphazard. (I'm currently usin …
0
votes
6answers
207 views

Performance of an large directory structure, networked application

I'm trying to find out what the performance of a large directory structure would be if deep directories were to be accessed on a shared, nfs filesystem. The structure would be exce …
4
votes
5answers
833 views

Remove C++-STL/Boost debug symbols (… or do not create them)

Linux/Gcc/LD - Toolchain. I would like to remove STL/Boost debug symbols from libraries and executable, for two reasons: Linking gets very slow for big programs Debugging jumps …