Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. [SOLVED]KDE Libs on 64 bit Linux
Forum Updated to NodeBB v4.3 + New Features

[SOLVED]KDE Libs on 64 bit Linux

Scheduled Pinned Locked Moved Installation and Deployment
4 Posts 2 Posters 3.8k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    bobby
    wrote on 30 Aug 2011, 18:21 last edited by
    #1

    Has someone run into this before?

    I just recently (yesterday) switched between 32bit Fedora & 64bit Fedora. Now when I compile my application I get

    @
    Starting /home/bobby/Code/Qt/DBtest-build-desktop/DBtest...
    /home/bobby/Code/Qt/DBtest-build-desktop/DBTest: error while loading shared libraries: libkdeui.so.5: cannot open shared object file: No such file or directory
    @

    However, a quick find shows libkdeui.so.5 exists in /usr/lib64/
    What part of my environment do I fix? KDE_DIR was set to /usr when this was first initiated on the new 64 install.

    "Linux is not user-friendly." It is user-friendly. It is not ignorant-friendly and idiot-friendly.
    ---Source unknown

    1 Reply Last reply
    0
    • T Offline
      T Offline
      task_struct
      wrote on 30 Aug 2011, 19:09 last edited by
      #2

      Hello,

      On my system - Kubuntu 11.04 64bit this file is in /usr/lib. Try to make a symlink.
      Also check your linking paths. It seems that /usr/lib64 is not included.

      Do you use cmake ot qmake for your project?

      "Most good programmers do programming not because they expect to get paid or get adulation by the public, but because it is fun to program."

      • Linu...
      1 Reply Last reply
      0
      • B Offline
        B Offline
        bobby
        wrote on 30 Aug 2011, 20:01 last edited by
        #3

        I use qmake. It's a pretty default setup from the QtCreator install.

        "Linux is not user-friendly." It is user-friendly. It is not ignorant-friendly and idiot-friendly.
        ---Source unknown

        1 Reply Last reply
        0
        • B Offline
          B Offline
          bobby
          wrote on 30 Aug 2011, 20:55 last edited by
          #4

          Answer:

          Task_struct's comment convinced me to checkout my .pro file
          @
          LIBS += -L/usr/lib/kde4/devel/ -lkdeui
          @
          Needed to be
          @
          LIBS += -L/usr/lib64/kde4/devel/ -lkdeui
          @

          Thanks folks!

          "Linux is not user-friendly." It is user-friendly. It is not ignorant-friendly and idiot-friendly.
          ---Source unknown

          1 Reply Last reply
          0

          1/4

          30 Aug 2011, 18:21

          • Login

          • Login or register to search.
          1 out of 4
          • First post
            1/4
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • Users
          • Groups
          • Search
          • Get Qt Extensions
          • Unsolved