* give a build-time error when trying to cross-compile the compiler from

non-i386 to i386 because that will result in internalerrors later anyway

git-svn-id: trunk@8662 -
This commit is contained in:
Jonas Maebe 2007-09-27 13:22:51 +00:00
parent f1d5f6536c
commit e81d4b737f

View File

@ -106,3 +106,7 @@
{$ENDIF MACOS}
{$define SUPPORT_UNALIGNED}
{$if not defined(cpui386) and defined(i386)}
{$error Cross-compiling from non-i386 to i386 is not yet supported at this time }
{$endif}