clang/gcc: Fix compilation issues with clang 3.0 and gcc 4.6
Review Request #1119 - Created April 2, 2012 and submitted
| Information | |
|---|---|
| Andreas Hansson | |
| gem5 | |
| default | |
| Reviewers | |
| Default | |
clang/gcc: Fix compilation issues with clang 3.0 and gcc 4.6 This patch addresses a number of minor issues that cause problems when compiling with clang >= 3.0 and gcc >= 4.6. Most importantly, it avoids using the deprecated ext/hash_map and instead uses unordered_map (and similarly so for the hash_set). To make use of the new STL containers, g++ and clang has to be invoked with "-std=c++0x", and this is now added for all gcc versions >= 4.6, and for clang >= 3.0. For gcc >= 4.3 and <= 4.5 and clang <= 3.0 we use the tr1 unordered_map to avoid the deprecation warning. The addition of c++0x in turn causes a few problems, as the compiler is more stringent and adds a number of new warnings. Below, the most important issues are enumerated: 1) the use of namespaces is more strict, e.g. for isnan, and all headers opening the entire namespace std are now fixed. 2) another other issue caused by the more stringent compiler is the narrowing of the embedded python, which used to be a char array, and is now unsigned char since there were values larger than 128. 3) a particularly odd issue that arose with the new c++0x behaviour is found in range.hh, where the operator< causes gcc to complain about the template type parsing (the "<" is interpreted as the beginning of a template argument), and the problem seems to be related to the begin/end members introduced for the range-type iteration, which is a new feature in c++11. As a minor update, this patch also fixes the build flags for the clang debug target that used to be shared with gcc and incorrectly use "-ggdb".
util/regress all passing (disregarding t1000 and eio) with gcc 4.6.2, and compiling with clang 2.9 and 3.0 on Ubuntu 12.04 and MacOSX 10.7.3
it's fine with the caveat that things which are deprecated today are normally gone tomorrow. Putting the no-deprecated warning is a bit dangerous. Is there perhaps a hash_map replacement that we could grab with version ifdefs?
Summary: |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Description: |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Diff: |
Revision 2 (+109 -59) |
-
SConstruct (Diff revision 2) -
Nice to know that the code is 0x compliant (when are they going to change the flag to c++11?
-
SConstruct (Diff revision 2) -
space after >=. Isn't this a problem with versions *after* 4.6? I don't remember the semantics of compareVersions, but I would expect >= would return true on 4.6 as well.
-
ext/libelf/SConscript (Diff revision 2) -
space after >=
-
src/SConscript (Diff revision 2) -
You might want to even use uint8_t here since there's technically no requirement that a char is one byte.
-
src/SConscript (Diff revision 2) -
Same >= vs. > question here.
-
src/arch/alpha/mt.hh (Diff revision 2) -
Yes, thank you.
-
src/arch/sparc/isa/decoder.isa (Diff revision 2) -
You can inject a "using std::isnan;" into the decoder .cc and avoid all these individual changes. Please let me know if you need help doing that.
-
src/arch/sparc/tlb_map.hh (Diff revision 2) -
Space after ,? I'm not sure it's explicitly in the style guide, but to me it is in spirit at least.
-
src/arch/x86/isa/microops/fpop.isa (Diff revision 2) -
Likewise for these microops, although since it only crops up on a couple lines it may not be that big of a problem.
-
src/base/hashmap.hh (Diff revision 2) -
>= or >? gcc 4.6 was working the last I checked.
-
src/base/hashmap.hh (Diff revision 2) -
#defines are bad. They change the code behind the programmers back and can accidentally apply places they didn't intend. Can you use typedefs with templates? Or create new templates which wrap the old ones.
-
src/base/stats/text.cc (Diff revision 2) -
"using std::isnan;" since this shows up a bunch in this file.
-
src/mem/ruby/common/Address.hh (Diff revision 2) -
Leftovers from debugging?
-
src/sim/init.hh (Diff revision 2) -
uint8_t?
Ship It!
Description: |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Diff: |
Revision 5 (+199 -77) |
