Undefined reference to mempcy@GLIBC_2.14 when compiling on Linux

后端 未结 6 1574
一整个雨季
一整个雨季 2020-12-02 01:45

I am trying to port an application to drive a device that uses an ftdi2332h chip from windows to linux. I installed the libftd2xx library on an ubuntu 10.04 system per these

6条回答
  •  渐次进展
    2020-12-02 02:14

    I'm not sure, but if it is a cross-compiler you're using, you must have compatible versions of the basic libraries installed somewhere (not in /usr/include and /usr/lib), and you must ensure that the compiler uses them, and not the ones for the native compiler. And you must ensure that the entire tool chain is version compatible. (And I know that this isn't a very complete answer, but it's all I know.)

提交回复
热议问题