Why does this programe require MSVCR80.dll?
Posted
by Runner
on Stack Overflow
See other posts from Stack Overflow
or by Runner
Published on 2010-04-26T11:11:16Z
Indexed on
2010/04/26
13:03 UTC
Read the original article
Hit count: 194
#include <gtk/gtk.h>
int main( int argc,
char *argv[] )
{
GtkWidget *window;
gtk_init (&argc, &argv);
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_widget_show (window);
gtk_main ();
return 0;
}
I tried putting various versions of MSVCR80.dll
under the same directory as the generated executable(via cmake
),but none matched.
© Stack Overflow or respective owner