Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. missing libHCI
Forum Updated to NodeBB v4.3 + New Features

missing libHCI

Scheduled Pinned Locked Moved Unsolved General and Desktop
3 Posts 3 Posters 229 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.
  • A Offline
    A Offline
    Anonymous_Banned275
    wrote on last edited by
    #1

    My most recent version of my code is missing "libHCI" and I do not recollect coding something which would deliberately
    created this problem. .

    I can go back and run a version which runs / does have access to this library.

    At this point I like to identify which code actually uses libHCI.

    It takes about 2 minutes to "build" and I get plenty of compiler messages.

    Is it possible to filter something related to usage of libHCI?

    Is there some other way to "compare code versions " to find out where is the problem?

    08:15:53: Starting /mnt/da659056-4bac-42bc-a335-54f4a3167ed0/MDI_WORK_COPY_FOLDER/MDI_BT_Oct21_STATUS/SOURCE/mdi/mdi...
    /mnt/da659056-4bac-42bc-a335-54f4a3167ed0/MDI_WORK_COPY_FOLDER/MDI_BT_Oct21_STATUS/SOURCE/mdi/mdi: error while loading shared libraries: libHCI.so.1: cannot open shared object file: No such file or directory
    08:15:53: /mnt/da659056-4bac-42bc-a335-54f4a3167ed0/MDI_WORK_COPY_FOLDER/MDI_BT_Oct21_STATUS/SOURCE/mdi/mdi exited with code 127

    Christian EhrlicherC 1 Reply Last reply
    0
    • A Anonymous_Banned275

      My most recent version of my code is missing "libHCI" and I do not recollect coding something which would deliberately
      created this problem. .

      I can go back and run a version which runs / does have access to this library.

      At this point I like to identify which code actually uses libHCI.

      It takes about 2 minutes to "build" and I get plenty of compiler messages.

      Is it possible to filter something related to usage of libHCI?

      Is there some other way to "compare code versions " to find out where is the problem?

      08:15:53: Starting /mnt/da659056-4bac-42bc-a335-54f4a3167ed0/MDI_WORK_COPY_FOLDER/MDI_BT_Oct21_STATUS/SOURCE/mdi/mdi...
      /mnt/da659056-4bac-42bc-a335-54f4a3167ed0/MDI_WORK_COPY_FOLDER/MDI_BT_Oct21_STATUS/SOURCE/mdi/mdi: error while loading shared libraries: libHCI.so.1: cannot open shared object file: No such file or directory
      08:15:53: /mnt/da659056-4bac-42bc-a335-54f4a3167ed0/MDI_WORK_COPY_FOLDER/MDI_BT_Oct21_STATUS/SOURCE/mdi/mdi exited with code 127

      Christian EhrlicherC Offline
      Christian EhrlicherC Offline
      Christian Ehrlicher
      Lifetime Qt Champion
      wrote on last edited by
      #2

      @AnneRanch said in missing libHCI:

      Is there some other way to "compare code versions " to find out where is the problem?

      https://en.wikipedia.org/wiki/Git

      Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
      Visit the Qt Academy at https://academy.qt.io/catalog

      1 Reply Last reply
      1
      • C Offline
        C Offline
        ChrisW67
        wrote on last edited by
        #3

        The component attempting to use libHCl will probably have either a qmake project file containing something like:

        ...
        LIBS += -lHCl
        ...
        

        or a cmake CMakeLists.txt like:

        ...
        add_library(HCl ...)
        ...
        

        You can find these fairly easily with grep.

        1 Reply Last reply
        0

        • Login

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