I'm doing some work in C++ on Fibonacci numbers which quickly grow out of bounds and I can't use them anymore. I need big integer functionality, which is not built in to C++ and int primitives aren't good enough.
I've found a few libraries that work with big ints, like GMP and CLN (the C++ Library for Numbers) but the installation instructions don't make sense to me.
How would I install GMP to work on windows 10? I use Codeblocks to write and build and run everything and my compiler is MinGW which is in my C:\ directory. How do I add GMP so that I can #include the library in a codeblocks C++ project?
I am a moron, and I require step by step instructions down to "download the file in this directory, move the .lib file into this directory, etc". I am not capable of understanding the given instructions for installation on the GMP website.