g++ -o helloworld helloworld.cpp
ma l'output mi restituisce:
perchè non trova le librerie per caso?helloworld.cpp:1:21: error: gtk/gtk.h: Nessun file o directory
helloworld.cpp:5: error: variable or field ‘hello’ declared void
helloworld.cpp:5: error: ‘GtkWidget’ was not declared in this scope
helloworld.cpp:5: error: ‘widget’ was not declared in this scope
helloworld.cpp:6: error: ‘gpointer’ was not declared in this scope
helloworld.cpp:6: error: initializer expression list treated as compound expression
helloworld.cpp:7: error: expected ‘,’ or ‘;’ before ‘{’ token
helloworld.cpp:11: error: ‘gboolean’ does not name a type
helloworld.cpp:30: error: variable or field ‘destroy’ declared void
helloworld.cpp:30: error: ‘GtkWidget’ was not declared in this scope
helloworld.cpp:30: error: ‘widget’ was not declared in this scope
helloworld.cpp:31: error: ‘gpointer’ was not declared in this scope
helloworld.cpp:31: error: initializer expression list treated as compound expression
helloworld.cpp:32: error: expected ‘,’ or ‘;’ before ‘{’ token
helloworld.cpp: In function ‘int main(int, char**)’:
helloworld.cpp:40: error: ‘GtkWidget’ was not declared in this scope
helloworld.cpp:40: error: ‘window’ was not declared in this scope
helloworld.cpp:41: error: ‘button’ was not declared in this scope
helloworld.cpp:45: error: ‘gtk_init’ was not declared in this scope
helloworld.cpp:48: error: ‘GTK_WINDOW_TOPLEVEL’ was not declared in this scope
helloworld.cpp:48: error: ‘gtk_window_new’ was not declared in this scope
helloworld.cpp:55: error: ‘G_OBJECT’ was not declared in this scope
helloworld.cpp:56: error: ‘delete_event’ was not declared in this scope
helloworld.cpp:56: error: ‘G_CALLBACK’ was not declared in this scope
helloworld.cpp:56: error: ‘NULL’ was not declared in this scope
helloworld.cpp:56: error: ‘g_signal_connect’ was not declared in this scope
helloworld.cpp:65: error: ‘GTK_CONTAINER’ was not declared in this scope
helloworld.cpp:65: error: ‘gtk_container_set_border_width’ was not declared in this scope
helloworld.cpp:68: error: ‘gtk_button_new_with_label’ was not declared in this scope
helloworld.cpp:80: error: ‘gtk_widget_destroy’ was not declared in this scope
helloworld.cpp:81: error: ‘g_signal_connect_swapped’ was not declared in this scope
helloworld.cpp:84: error: ‘gtk_container_add’ was not declared in this scope
helloworld.cpp:87: error: ‘gtk_widget_show’ was not declared in this scope
helloworld.cpp:95: error: ‘gtk_main’ was not declared in this scope

