瀏覽代碼

+ enable the win16 internal linker if the compiler is compiled with the
WIN16_INTERNAL_LINKER define. Since the win16 internal linker isn't completed
yet, this define is not enabled by default.

git-svn-id: trunk@42498 -

nickysn 6 年之前
父節點
當前提交
db83612b2c
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      compiler/systems/i_win16.pas

+ 4 - 0
compiler/systems/i_win16.pas

@@ -78,7 +78,11 @@ unit i_win16;
             dirsep       : '\';
             assem        : as_i8086_omf;
             assemextern  : as_i8086_nasmobj;
+{$ifdef WIN16_INTERNAL_LINKER}
+            link         : ld_int_win16;
+{$else}
             link         : ld_win16;
+{$endif}
             linkextern   : ld_win16;
 {$ifdef USE_SCRIPTED_WLIB}
             ar           : ar_watcom_wlib_omf_scripted;