CodeLite not starting on fedora 32 - fedora

I installed CodeLite using the rpm package from their website.
When I tried to open the program for the first time nothing happened.
Trying to start codelite from the console i get the following error message:
codelite: error while loading shared libraries: libSDL-1.2.so.0: cannot open shared object file: No such file or directory
I have installed SDL and SDL to try to solve this problem, but it didn't make a difference. the not found file seems to be at the right place. Im relatively new to Linux so I might forgeting something?
[leon#linux ~]$ ls /usr/lib/libSDL*
/usr/lib/libSDL-1.2.so.0 /usr/lib/libSDL-1.2.so.0.11.4
RPM: codelite-14.0-2.fc32.x86_64
Fedora 32
I really don't know how to continue from here so every help would be appreciated

Related

Package install in Octave erros - Ubuntu 12.04

ok this seems like a really silly question but for some reason I'm having issues installing a package into octave (using Ubuntu 12.04). I used the command:
pkg install signal-1.3.0.tar.gz
and got the error:
warning: file signal-1.3.0.tar.gz does not exist
But the file does exist and I have the tar file in the same folder as octave. I can't work out what the issue is... any ideas?? Thanks in advance!!

Binary file refuses to run due to a missing shared library

I tried building recutils version 1.7 downloaded from the home page, using the standard configure, make, sudo make install sequence, but when trying to run the resulting binaries. like recinf, I get the error:
recinf: error while loading shared libraries: librec.so.1: cannot open shared object file: No such file or directory
Does this mean I made a mistake during the build or is the package itself in error?
As Etan Reisner said the problem was that the shared object libraries were installed but not loaded into the cache, hence the need to run ldconfig. After running
sudo ldconfig
the binaries ran properly. If I had looked in /usr/local/lib, I would have seen the libs there.

Installing Google Earth Enterprise - "Error While Loading Shared Libraries: Libcap.so.1" Can Not Open Shared Object File: No Such File or Directory"

Hello stack overflow!!!
I'm installing Google Earth Enterprise on a Suse 11.1 Linux machine. I have installed GEEFusion and GEESever, and both installs worked correctly, in theory. (In fact, when I do a command line run of server it starts up perfectly.)
However, when I try to start up GEEFusion using /etc/init.d/gefusion start I get the following error:
Error While Loading Shared Libraries: Libcap.so.1" Can Not Open Shared Object File: No Such File or Directory
We went and downloaded the library pack and installed it on Suse, and it still gives that error. We chmod'd the library items to 755 and it still gives that error. We also tried to install this on fedora and it still gave this error.
We're really at a loss of what to do, we have a ticket into Google but time is running short! Anyone seen this error? Suggestions?

APE Install Missing File

After installing from the RPM and then trying the Binary versions of APE (AJAX Push Engine) I am getting this error (on both versions) when I try to run the APE server:
[Module] Failed to load ../modules/libmod_spidermonkey.so [Invalid library] (libmysqlclient_r.so.15: cannot open shared object file: No such file or directory)
I am using Fedora Linux, with MySql and apache installed. How can I get this libmysqlclient file? I have found this RPM: http://rpm.pbone.net/index.php3/stat/4/idpl/12471829/dir/fedora_4/com/mysqlclient15-5.0.67-1.fc4.remi.i386.rpm.html
And it says it includes this file, so I downloaded it to the box, attempted to install and tells me that it's already installed.
Any advice would help thanks!
Inside the ape.conf there's a module working directory which must be altered.

Qt windows libmysql.dll

I have installed MySQL 5.1.49 and the binary QT 4.6.2 for Visual Studio 2008. I configured Qt as follow:
C:\Qt>configure -static -no-webkit -plugin-sql-sqlite -plugin-sql-mysql -I C:\mysql\include -L C:\mysql\lib\optC:\Qt\src\plugins\sqldriver
Everything went fine, no errors. When I run nmake on my application everything runs fine, no errors as well. However when I execute my application under the debug folder I get a popup saying "Driver not loaded" (I have QT += sql under my project.pro)
If I goto C:\Qt\plugins\sqldrivers I dont see any libmysql, or any *mysql.dll only qsqlmysql.obj and qsqlmysqld.obj (there are files such as: qsqlite4.dll, qsqlpsql4.dll etc.)
I did try to build it manually by doing:
cd %QTDIR%\src\plugins\sqldrivers\mysql
C:\Qt\src\plugins\sqldrivers\mysql>qmake "INCLUDEPATH+=C:\mysql\include" "LIBS+=C:\mysql\lib\opt\libmysql.lib" mysql.pro
nmake
Everything compiles fine, no errors. However, I still don't find any libmysql.dll generated. Only file found is under C:\mysql\bin\libmySQL.dll
I have all the includes for MySQL under C:\mysql\include and the libraries under C:\mysql\lib\opt
Any ideas what could be the problem? Thanks
Using -static prevents you from using plugins at runtime. You will need to change
-plugin-sql-mysql
to
-qt-sql-mysql
and have it compiled in.
B1.
Have you tried using qt source instead of the binary one? I had a similar issue, however I was getting compile errors.