Browse Source

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

git-svn-id: trunk@10981 -
Jonas Maebe 17 years ago
parent
commit
52f81c97cf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/systems/t_sunos.pas

+ 1 - 1
compiler/systems/t_sunos.pas

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