Home > Back-end >  Ubuntu 18.04 mistakes executable for a shared library
Ubuntu 18.04 mistakes executable for a shared library

Time:12-16

I compile a QT application using CMake and make and every time I double click the executable I get the error "there is no application installed for shared library ".My application runs if I try to run it from the console. How I make the app execute by double-clicking ?

CodePudding user response:

You might be missing the execution permission. Run chmod x <filename> then try to run executable again.

CodePudding user response:

So I find the error you need to compile with -no-pie flag in order to work just as an executable

  • Related