Parcourir la source

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 il y a 7 ans
Parent
commit
6094910917
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  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;