/home/carver413/programing/GLScene_v1.1_October_2010_SVN_revision_5227/Source/PhysicsAPIs/GLSModuleLoader.pas(1,1) Fatal: Can't find unit Libc used by GLSModuleLoader
There is no libc unit in FreePascal for 64-bit Linux, and not recommended to use it on 32-bit Linux. So, this is a problem with GLScene. Try to remove Libc from uses in GLSModuleLoader.pas, and add these functions after implementation:
Code:
function dlopen ( Name : PChar; Flags : longint) : Pointer; cdecl; external 'dl';
function dlclose( Lib : Pointer) : Longint; cdecl; external 'dl';
function dlsym  ( Lib : Pointer; Name : Pchar) : Pointer; cdecl; external 'dl';
Maybe it will help, but I can't guarantee this