Browse Source

- disabled PACKSET for big endian systems since it breaks make cycle
(please first commit tests and wait till the results are known
before enabling new experimental features in the compiler itself)

git-svn-id: trunk@5322 -

Jonas Maebe 19 years ago
parent
commit
f5d653a1fd
1 changed files with 2 additions and 0 deletions
  1. 2 0
      compiler/fpcdefs.inc

+ 2 - 0
compiler/fpcdefs.inc

@@ -22,7 +22,9 @@
 { This reduces the memory requirements a lot }
 { This reduces the memory requirements a lot }
 {$PACKENUM 1}
 {$PACKENUM 1}
 {$ifdef FPC_HAS_VARSETS}
 {$ifdef FPC_HAS_VARSETS}
+{$ifndef FPC_BIG_ENDIAN}
 {$PACKSET 1}
 {$PACKSET 1}
+{$endif}
 {$endif FPC_HAS_VARSETS}
 {$endif FPC_HAS_VARSETS}
 
 
 { We don't use exceptions, so turn off the implicit
 { We don't use exceptions, so turn off the implicit