in reply to Re^3: libintl.a for Strawberry Perl
in thread libintl.a for Strawberry Perl

... and those undefined symbols should be defined by msvcrt ! And I neither can link with libintl.a on MSYS2.

Replies are listed 'Best First'.
Re^5: libintl.a for Strawberry Perl
by bliako (Abbot) on Jan 24, 2019 at 20:54 UTC

    What does that mean? Can you compile link ANY C program at all?

    #include <string.h> int main(void){ char buf[10]; stpcpy(buf, "hello"); //sic }