mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-01 13:11:06 +02:00
* enable the assembler by default in hermes.pp
git-svn-id: trunk@23015 -
This commit is contained in:
parent
31e5ac3836
commit
8222b8d956
@ -10,15 +10,15 @@ version=2.7.1
|
|||||||
units=hermes
|
units=hermes
|
||||||
|
|
||||||
[compiler]
|
[compiler]
|
||||||
options_i386_linux=-dI386_ASSEMBLER
|
#options_i386_linux=-dI386_ASSEMBLER
|
||||||
options_i386_win32=-dI386_ASSEMBLER
|
#options_i386_win32=-dI386_ASSEMBLER
|
||||||
options_i386_go32v2=-dI386_ASSEMBLER
|
#options_i386_go32v2=-dI386_ASSEMBLER
|
||||||
options_i386_freebsd=-dI386_ASSEMBLER
|
#options_i386_freebsd=-dI386_ASSEMBLER
|
||||||
options_i386_haiku=-dI386_ASSEMBLER
|
#options_i386_haiku=-dI386_ASSEMBLER
|
||||||
options_i386_beos=-dI386_ASSEMBLER
|
#options_i386_beos=-dI386_ASSEMBLER
|
||||||
options_x86_64_linux=-dX86_64_ASSEMBLER
|
#options_x86_64_linux=-dX86_64_ASSEMBLER
|
||||||
options_x86_64_win64=-dX86_64_ASSEMBLER
|
#options_x86_64_win64=-dX86_64_ASSEMBLER
|
||||||
options_x86_64_freebsd=-dX86_64_ASSEMBLER
|
#options_x86_64_freebsd=-dX86_64_ASSEMBLER
|
||||||
|
|
||||||
unitdir=
|
unitdir=
|
||||||
targetdir=.
|
targetdir=.
|
||||||
|
@ -34,6 +34,14 @@ unit Hermes;
|
|||||||
|
|
||||||
{$MODE objfpc}
|
{$MODE objfpc}
|
||||||
|
|
||||||
|
{$IF defined(cpui386) and not defined(noassembler)}
|
||||||
|
{$DEFINE I386_ASSEMBLER}
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
|
{$IF defined(cpux86_64) and not defined(noassembler)}
|
||||||
|
{$DEFINE X86_64_ASSEMBLER}
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
||||||
const
|
const
|
||||||
|
Loading…
Reference in New Issue
Block a user