Browse Source

o NativeNT target patch by Sven Barth, resolves with r16553 and r16554 #18195
* enables some disabled features for NativeNT in the compiler (all except stackcheck).

git-svn-id: trunk@16555 -

florian 14 years ago
parent
commit
142e42bd81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/options.pas

+ 1 - 1
compiler/options.pas

@@ -2230,7 +2230,7 @@ begin
       target_unsup_features:=[f_threading,f_commandargs,f_fileio,f_textio,f_consoleio,f_dynlibs];
       target_unsup_features:=[f_threading,f_commandargs,f_fileio,f_textio,f_consoleio,f_dynlibs];
     system_i386_nativent:
     system_i386_nativent:
       // until these features are implemented, they are disabled in the compiler
       // until these features are implemented, they are disabled in the compiler
-      target_unsup_features:=[f_threading,f_processes,f_fileio,f_textio,f_consoleio,f_commandargs,f_stackcheck];
+      target_unsup_features:=[f_stackcheck];
     else
     else
       target_unsup_features:=[];
       target_unsup_features:=[];
   end;
   end;