DrMoisha has asked for the wisdom of the Perl Monks concerning the following question:
It fails to start with exception 0xc000007b. I tried everything I could think of: changes in makefile, launching console as administrator. Nothing seems to work at all. I'm confused. Please, help me somehow. Thank you.#include <EXTERN.h> /* from the Perl distribution */ #include <perl.h> /* from the Perl distribution */ static PerlInterpreter *my_perl; /*** The Perl interpreter ***/ int main ( int argc, char **argv, char **env ) { PERL_SYS_INIT3 ( &argc, &argv, &env ); my_perl = perl_alloc ( ); perl_construct ( my_perl ); PL_exit_flags |= PERL_EXIT_DESTRUCT_END; perl_parse ( my_perl, NULL, argc, argv, ( char ** ) NULL ); perl_run ( my_perl ); perl_destruct ( my_perl ); perl_free ( my_perl ); PERL_SYS_TERM ( ); }
I'm complete moron.
I've launched "Developer Command Prompt for VS2013". Instead you should launch architecture dependant version of prompt like VS2013 x64 Native Tools Command Prompt It transforms error 0xc000007b to 'dll not found'
|
|---|