public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* gtk application compile error
@ 2003-02-26 13:12 Raheel
  2003-03-03 15:00 ` LLeweLLyn Reese
  0 siblings, 1 reply; 2+ messages in thread
From: Raheel @ 2003-02-26 13:12 UTC (permalink / raw)
  To: gcc-help

hi .........

I have written a very basic program using gtk_widgets. And tried the command
line switches. Below is what i got when try to compile: #  gcc -Wall
wind.c -o wind.o 'gtk-config --libs --cflags'

> gcc: gtk-config --libs --cflags: No such file or directory
> wind.c:2:21: gtk/gtk.h: No such file or directory
> wind.c: In function `main':
> wind.c:7: `GtkWidget' undeclared (first use in this function)
> wind.c:7: (Each undeclared identifier is reported only once
> wind.c:7: for each function it appears in.)
> wind.c:7: `window' undeclared (first use in this function)
> wind.c:9: warning: implicit declaration of function `gtk_init'
> wind.c:11: warning: implicit declaration of function `gtk_window_new'
> wind.c:11: `GTK_WINDOW_TOPLEVEL' undeclared (first use in this function)
> wind.c:12: warning: implicit declaration of function `gtk_widget_show'
> wind.c:14: warning: implicit declaration of function `gtk_main'

plz help me, I am hanging between all this.

Raheel.

plz note my source code is:


# include <gtk/gtk.h>

int main( int   argc, char *argv[] )
{

    GtkWidget *window;

    gtk_init (&argc, &argv);

    window =3D gtk_window_new (GTK_WINDOW_TOPLEVEL);
    gtk_widget_show  (window);

    gtk_main ();

  //printf ("this is first gcc program\n");
  //printf ("%s", argv[1]);
  //printf ("%s", argv[2]);

    return 0;
}

AND  my development box is solaris 8.0 (sparc).


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: gtk application compile error
  2003-02-26 13:12 gtk application compile error Raheel
@ 2003-03-03 15:00 ` LLeweLLyn Reese
  0 siblings, 0 replies; 2+ messages in thread
From: LLeweLLyn Reese @ 2003-03-03 15:00 UTC (permalink / raw)
  To: Raheel; +Cc: gcc-help

"Raheel" <raheel.khan@hotpop.com> writes:

> hi .........
> 
> I have written a very basic program using gtk_widgets. And tried the command
> line switches. Below is what i got when try to compile: #  gcc -Wall
> wind.c -o wind.o 'gtk-config --libs --cflags'

You are using the wrong kind of quotes. Try:

gcc -Wall wind.c -o wind.o `gtk-config --libs --cflags`

The ` (backquote) key is usually near the upper left hand corney of
    the keyboard, but I haven't seen a Sun keyboard in years...

> 
> > gcc: gtk-config --libs --cflags: No such file or directory
> > wind.c:2:21: gtk/gtk.h: No such file or directory
> > wind.c: In function `main':
> > wind.c:7: `GtkWidget' undeclared (first use in this function)
> > wind.c:7: (Each undeclared identifier is reported only once
> > wind.c:7: for each function it appears in.)
> > wind.c:7: `window' undeclared (first use in this function)
> > wind.c:9: warning: implicit declaration of function `gtk_init'
> > wind.c:11: warning: implicit declaration of function `gtk_window_new'
> > wind.c:11: `GTK_WINDOW_TOPLEVEL' undeclared (first use in this function)
> > wind.c:12: warning: implicit declaration of function `gtk_widget_show'
> > wind.c:14: warning: implicit declaration of function `gtk_main'
> 
> plz help me, I am hanging between all this.
> 
> Raheel.
> 
> plz note my source code is:
> 
> 
> # include <gtk/gtk.h>
> 
> int main( int   argc, char *argv[] )
> {
> 
>     GtkWidget *window;
> 
>     gtk_init (&argc, &argv);
> 
>     window =3D gtk_window_new (GTK_WINDOW_TOPLEVEL);
>     gtk_widget_show  (window);
> 
>     gtk_main ();
> 
>   //printf ("this is first gcc program\n");
>   //printf ("%s", argv[1]);
>   //printf ("%s", argv[2]);
> 
>     return 0;
> }
> 
> AND  my development box is solaris 8.0 (sparc).

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-03-03 15:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-26 13:12 gtk application compile error Raheel
2003-03-03 15:00 ` LLeweLLyn Reese

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).