On 3/04/12 23:10, Miguel de Benito Delgado wrote:
[]
- Change compiler to GCC 4.2. Why: LLVM 3.1 complains about arrays of
non-POD objects.

You mean llvm-gcc-4.2. Plain old gcc-4.2 has disappeared now from MacOSX 10.7. The one that complains is clang (based on llvm-3.1svn). There is an easy fix for the code to make it sufficiently standard-compliant so that it is accepted by clang:

Change in src/Kernel/Abstractions/basic.hpp line 51 from

#if (defined OS_WIN32 || defined __SUNPRO_CC)

to

#if (defined OS_WIN32 || defined __SUNPRO_CC || defined __clang__)

In this way it keeps the previous code for the older more tolerant compilers.

--
Martin

_______________________________________________
Texmacs-dev mailing list
Texmacs-dev@gnu.org
https://lists.gnu.org/mailman/listinfo/texmacs-dev

Reply via email to