Ver código fonte

amiga/m68k: disable dynlibs feature. while the amiga has dynamic libraries, they have a different architecture, which don't mix with this feature. powerpc amiga could support the mainstream-style dynlibs, so keep it enabled there.

git-svn-id: trunk@37880 -
Károly Balogh 7 anos atrás
pai
commit
6094910917
1 arquivos alterados com 5 adições e 0 exclusões
  1. 5 0
      compiler/options.pas

+ 5 - 0
compiler/options.pas

@@ -3159,6 +3159,11 @@ begin
       target_unsup_features:=[f_threading];
     system_m68k_atari:
       target_unsup_features:=[f_threading];
+    { classic amiga has dynamic libraries, but they cannot be integrated in the
+      normal dynlibs infrastructure due to architectural differences, so therefore
+      lets disable the feature. }
+    system_m68k_amiga:
+      target_unsup_features:=[f_dynlibs];
     else
       target_unsup_features:=[];
   end;