From 748df1810f3e0a3ca3fd6f461698b7567c3399c6 Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 7 Mar 2005 17:10:00 +0000 Subject: [PATCH] * use lib64 for x86_64 --- compiler/systems/t_linux.pas | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/compiler/systems/t_linux.pas b/compiler/systems/t_linux.pas index f90a117d66..cf44e4a801 100644 --- a/compiler/systems/t_linux.pas +++ b/compiler/systems/t_linux.pas @@ -190,7 +190,11 @@ Constructor TLinkerLinux.Create; begin Inherited Create; if not Dontlinkstdlibpath Then +{$ifdef x86_64} + LibrarySearchPath.AddPath('/lib64;/usr/lib64;/usr/X11R6/lib64',true); +{$else} LibrarySearchPath.AddPath('/lib;/usr/lib;/usr/X11R6/lib',true); +{$endif x86_64} end; @@ -579,7 +583,10 @@ end. { $Log$ - Revision 1.34 2005-02-14 17:13:10 peter + Revision 1.35 2005-03-07 17:10:00 peter + * use lib64 for x86_64 + + Revision 1.34 2005/02/14 17:13:10 peter * truncate log Revision 1.33 2005/01/10 15:56:13 peter