Add /usr/lib64 and /lib64 to default library path list for sparc linux

(cherry picked from commit aca84a8128)
This commit is contained in:
Pierre Muller 2022-09-18 14:02:40 +02:00 committed by florian
parent 3509dac9f1
commit 336d531687

View File

@ -186,6 +186,9 @@ begin
{$endif mips}
{$ifdef sparc64}
LibrarySearchPath.AddLibraryPath(sysrootpath,'=/usr/lib/sparc64-linux-gnu',true);
LibrarySearchPath.AddLibraryPath(sysrootpath,'=/lib/sparc64-linux-gnu',true);
LibrarySearchPath.AddLibraryPath(sysrootpath,'=/usr/lib64',true);
LibrarySearchPath.AddLibraryPath(sysrootpath,'=/lib64',true);
{$endif sparc64}
end;
end;