Browse 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 7 years ago
parent
commit
6094910917
1 changed files with 5 additions and 0 deletions
  1. 5 0
      compiler/options.pas

+ 5 - 0
compiler/options.pas

@@ -3159,6 +3159,11 @@ begin
       target_unsup_features:=[f_threading];
       target_unsup_features:=[f_threading];
     system_m68k_atari:
     system_m68k_atari:
       target_unsup_features:=[f_threading];
       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
     else
       target_unsup_features:=[];
       target_unsup_features:=[];
   end;
   end;