Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
13answers
3k views

How to improve Visual C++ compilation times?

I am compiling 2 C++ projects in a buildbot, on each commit. Both are around 1000 files, one is 100 kloc, the other 170 kloc. Compilation times are very different from gcc (4.4) to Visual C++ (2008). ...
9
votes
2answers
358 views

type safety in clojure

I want to ask what sort of type safety languages constructs are there on Clojure? I've read 'Practical Clojure' from Luke VanderHart and Stuart Sierra several times now, but i still have the distinct ...
9
votes
6answers
617 views

Why does Tex/Latex not speed up in subsequent runs?

I really wonder, why even recent systems of Tex/Latex do not use any caching to speed up later runs. Every time that I fix a single comma*, calling Latex costs me about the same amount of time, ...
4
votes
1answer
216 views

Are the new Delphi XE2 autogenerated build numbers linked to 1.1.2000 00:00:00?

In Delphi XE2 the automatically generated build numbers functionality now uses some kind of date and time generated values, like this: 2.4.4386.838 The last two numbers change each time you build ...
4
votes
1answer
60 views

Shorter way of resolving type to the class::typedef

I have several classes. For now they are separated by one symbol. Few of them contains type (a typedef) and few of them doesn't have it. struct A { ... public: typedef someclass type; } struct B { ...
1
vote
4answers
792 views

How to reduce compilation times with Boost Asio

Boost.Asio is great library but it has one huge drawback -- extreamly slow compilation times. A simple implementation (really simple) of HTTP protocol (about 1k lines of code) requires about 13.5s to ...
0
votes
1answer
82 views

Compiling subset of tests in Google Test

Using flags to limit the tests run in Google Test framework is great, but in my case most of the time is wasted on waiting for the entire test project to compile again and again while I'm writing ...