From 69d44da0066f27c44afb68f937fc1745e3ff963f Mon Sep 17 00:00:00 2001 From: michael Date: Mon, 29 Aug 2005 10:32:12 +0000 Subject: [PATCH] + Patch from colin western to let linker use internal script git-svn-id: trunk@975 - --- compiler/systems/t_linux.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/systems/t_linux.pas b/compiler/systems/t_linux.pas index 77c2e4e085..74518e215f 100644 --- a/compiler/systems/t_linux.pas +++ b/compiler/systems/t_linux.pas @@ -217,8 +217,8 @@ var begin with Info do begin - ExeCmd[1]:='ld '+platform_select+' $OPT $DYNLINK $STATIC $GCSECTIONS $STRIP -L. -o $EXE -T $RES'; - DllCmd[1]:='ld '+platform_select+' $OPT $INIT $FINI $SONAME -shared -L. -o $EXE -T $RES'; + ExeCmd[1]:='ld '+platform_select+' $OPT $DYNLINK $STATIC $GCSECTIONS $STRIP -L. -o $EXE $RES'; + DllCmd[1]:='ld '+platform_select+' $OPT $INIT $FINI $SONAME -shared -L. -o $EXE $RES'; DllCmd[2]:='strip --strip-unneeded $EXE'; {$ifdef m68k} libctype:=glibc2;