From 8d9e138927a270208352e0c862532f57dc49a4b4 Mon Sep 17 00:00:00 2001 From: peter Date: Sun, 25 Feb 2007 16:44:02 +0000 Subject: [PATCH] * removed -Bsymbolic, there was a namespace conflict between the program and libraries that caused problems but that is now fixed by r6643 git-svn-id: trunk@6645 - --- compiler/systems/t_linux.pas | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/systems/t_linux.pas b/compiler/systems/t_linux.pas index 0f4e286aaf..c041a2a697 100644 --- a/compiler/systems/t_linux.pas +++ b/compiler/systems/t_linux.pas @@ -238,8 +238,7 @@ begin with Info do begin ExeCmd[1]:='ld '+platform_select+' $OPT $DYNLINK $STATIC $GCSECTIONS $STRIP -L. -o $EXE $RES'; - { use -Bsymbolic to avoid shadowing } - DllCmd[1]:='ld '+platform_select+' $OPT $INIT $FINI $SONAME -shared -L. -o $EXE $RES -E -Bsymbolic'; + DllCmd[1]:='ld '+platform_select+' $OPT $INIT $FINI $SONAME -shared -L. -o $EXE $RES -E'; DllCmd[2]:='strip --strip-unneeded $EXE'; {$ifdef m68k} libctype:=glibc2;