Changes between Version 1 and Version 2 of Ticket #38816, comment 2
- Timestamp:
- Apr 17, 2013, 6:07:50 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #38816, comment 2
v1 v2 1 Ah. I see. There was a bug here, you should have gotten the -mavx flag during the x86_64 compilation, whereas you have -ssse3instead, and so you get a bunch of errors like this:1 Ah. I see. There was a bug here, you should have gotten the `-mavx` flag during the x86_64 compilation, whereas you have `-ssse3` instead, and so you get a bunch of errors like this: 2 2 3 3 {{{ … … 6 6 }}} 7 7 8 because “ _ _m256d” types are only defined when you use the -mavxflag.8 because “`__m256d`” types are only defined when you use the `-mavx` flag. 9 9 This bug is caused by the ‘sysctl’ misbehavior I reported. 10 10 It should be fixed in r105307. Please retry!