* only enable I386_ASSEMBLER on certain platforms

git-svn-id: trunk@23028 -
This commit is contained in:
nickysn 2012-11-18 20:37:32 +00:00
parent 69437fcc1a
commit 5640b654c9

View File

@ -35,7 +35,9 @@ unit Hermes;
{$MODE objfpc}
{$IF defined(cpui386) and not defined(noassembler)}
{$DEFINE I386_ASSEMBLER}
{$IF defined(linux) or defined(win32) or defined(go32v2) or defined(freebsd) or defined(haiku) or defined(beos)}
{$DEFINE I386_ASSEMBLER}
{$ENDIF}
{$ENDIF}
{$IF defined(cpux86_64) and not defined(noassembler)}