Changes between Initial Version and Version 1 of Ticket #34213, comment 2
- Timestamp:
- Dec 15, 2015, 2:05:20 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34213, comment 2
initial v1 5 5 }}} 6 6 7 Tiger's header is incorrectly checking __VEC__ instead of __APPLE_ALTIVEC__at that location. This is fixed in Leopard's header.7 Tiger's header is incorrectly checking `__VEC__` instead of `__APPLE_ALTIVEC__` at that location. This is fixed in Leopard's header. 8 8 9 The second bug (which masks the first) is that gcc-4.0 is enabling support for __APPLE_ALTIVEC__even when it doesn't advertise that support. The preprocessor directives are consistent:9 The second bug (which masks the first) is that gcc-4.0 is enabling support for `__APPLE_ALTIVEC__` even when it doesn't advertise that support. The preprocessor directives are consistent: 10 10 11 11 {{{ … … 31 31 }}} 32 32 33 For now, I suggest you work around this by using -faltivec33 For now, I suggest you work around this by using `-faltivec`