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. OpenXCP
Forum Updated to NodeBB v4.3 + New Features

OpenXCP

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 1 Posters 357 Views
  • 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.
  • V Offline
    V Offline
    vmhb
    wrote on last edited by vmhb
    #1

    I am trying to build the open source git hub tool OpenXCP, which uses an external git library qtcsv to write CSV files. The library is not included in the OpenXCP library so I have downloaded and built a static version. However when the application is linked against it I get some odd unresolved symbol names. For example

    205: undefined reference to `__imp__ZN5QtCSV10StringDataC1Ev'

    Looking at the library with dumpbin I can see the exported symbols do not have the same name

    ZN5QtCSV10StringDataC1ERKS0
    006 00000000 SECT3 notype External |
    _imp__ZN5QtCSV10StringDataC1ERKS0
    007 00000000 UNDEF notype External |

    Going back to the C++ code this seems to be a reference to a class type and additional information has been added to the name

    QtCSV::StringData data;

    Can anyone please explain what is going on here and how I fix it?

    1 Reply Last reply
    0
    • V Offline
      V Offline
      vmhb
      wrote on last edited by
      #2

      Problem fixed. There were some header files for qtcsv, that were included with the original OpenXCP project, that did not match the latest files from which the library was built. Updating those files enabled me to build and run.

      1 Reply Last reply
      1

      • Login

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