Explorar o código

Merged revisions 10981 via svnmerge from
http://svn.freepascal.org/svn/fpc/trunk

........
r10981 | jonas | 2008-05-17 12:57:44 +0200 (Sa, 17 Mai 2008) | 2 lines

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

git-svn-id: branches/fixes_2_2@11032 -

florian %!s(int64=17) %!d(string=hai) anos
pai
achega
f645ffa4ea
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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}