Cannot Open Shared Object cygmpfr-1.dll
- by Nathan Campos
I'm testing CeGCC, that is a gcc built to cross-compile applications to Windows CE devices. As everyone do to test compilers, I've done a Hello World program:
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}
As I'm using Windows now(because this is my other laptop), I'm using Cygwin. But when I tried to compile I…