Tagged Questions
The compiler-version tag has no wiki summary.
2
votes
3answers
145 views
Technical considerations in dropping support for old compiler versions?
I work on a project that's distributed for free in both source and binary form, since many of our users need to compile it specifically for their system. The necessitates a degree of consideration in ...
1
vote
1answer
109 views
Java - Make src/main/java compile with java 1.4 and src/test/java compile with 1.5
I have a project which must be compiled only with java 1.4. But I am planning to write some unit tests using mockito. I want a way to specify in pom so that src/main/java compiles with jdk 1.4 but ...
0
votes
1answer
186 views
Choosing newer gcc version for upgrade
I develop C++ applications on CentOS 5.4 and we came across several inconvenient situations with gcc 4.1.2 like inability to debug local variables in class constructor which is a confirmed gcc bug ...
0
votes
1answer
221 views
Benchmarks of code generated by different g++ versions
I work on a runtime system for an application domain that is very performance sensitive. We go to a lot of effort to maintain backward compatibility with older compiler versions, including avoiding ...