in reply to Re: Disappointed with latest Strawberry Perl
in thread Disappointed with latest Strawberry Perl
And any compilation that includes perl.h fails, since the the standard C headers that perl.h includes aren't found.C:\C>type try.c #include <stdio.h> int main(void) { printf("Hello World\n"); return 0; } C:\C>gcc -o try.exe try.c gcc: installation problem, cannot exec `cc1': No such file or director +y C:\C>set PATH=C:\strawberry\c\libexec\gcc\mingw32\3.4.5;%PATH% C:\C>gcc -o try.exe try.c try.c:1:19: no include path in which to search for stdio.h C:\C>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Disappointed with latest Strawberry Perl
by xdg (Monsignor) on Dec 30, 2007 at 16:50 UTC | |
by syphilis (Archbishop) on Dec 31, 2007 at 00:19 UTC |