Where to find “gmp.h”?

后端 未结 7 1831
梦毁少年i
梦毁少年i 2020-12-08 09:17

I am installing a library, and got this error message:

xxxx@ubuntu$ make
(cd num; make all)
make[1]: Entering directory `/home/xxxx/num\'
make[1]: Nothing to         


        
7条回答
  •  醉酒成梦
    2020-12-08 09:51

    Because it can happen that you need this library in 32 bit format for any particular reason (like it was for me)

    You will need to run (on an Ubuntu/Debian) :

    apt-get install  libgmp3-dev:i386
    

    the suffix :i386 behind any library will install the 32 bits version of it.

提交回复
热议问题