I have installed MinGW, MSYS2, mfpr, gmp, and Visual Studio.
I have created a Makefile in my template C repository and configured it to build with the mfpr.h library.
Here are some Configuration Properties for my project:
General > Project Defaults
• Configuration Type | Makefile
VC++ Directories > General
• Include Directories | C:\MSYS2\mingw64\include;$(IncludePath)
NMake > General
• Build Command Line | mingw32-make
• Rebuild All Command Line | mingw32-make clean && mingw32-make
• Clean Command Line | mingw32-make clean
I selected Build > Build Solution, and I was met with this error: The command "mingw32-make" exited with code 2.
I am definitely out of my depth with all this - please advise on some troubleshooting options I can take to solve this issue. Thanks!