문제

I'm new for the c++ programming. I installed OpenSSL for my visual studio. I would like to install GMP for visual studio. How should I do that? There is no file such as gmp.exe. I dont know how to install this. Any help would be appreciated.

도움이 되었습니까?

해결책

It isn't that hard to install GMP on windows.

First, download the GMP tar file. You have to install cygwin on windows with gcc, make and m4. You can then run linux command using cygwin. Decompress the tar file, then (RECOMMEND to check out the INSTALL file).

Do ./configure, if you need anything special like running c++ gmp code, you have to add flags. Do./configure --help to check it out. Then run make, make check, and finally run make install.

You will have to add the path back to your project properties. Enjoy !

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top