瀏覽代碼

* call gstrip (GNU) instead of strip (Sun)

git-svn-id: trunk@10981 -
Jonas Maebe 17 年之前
父節點
當前提交
52f81c97cf
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      compiler/systems/t_sunos.pas

+ 1 - 1
compiler/systems/t_sunos.pas

@@ -203,7 +203,7 @@ begin
 {$IFDEF GnuLd}
      ExeCmd[1]:='gld $OPT $DYNLINK $STATIC $STRIP -L. -o $EXE $RES';
      DllCmd[1]:='gld $OPT -shared -L. -o $EXE $RES';
-     DllCmd[2]:='strip --strip-unneeded $EXE';
+     DllCmd[2]:='gstrip --strip-unneeded $EXE';
      DynamicLinker:=''; { Gnu uses the default }
      Glibc21:=false;
 {$ELSE}