brics
brics

Reputation: 23

gcc raises "unrecognized command line option" error with pkg-config

I am trying to compile a gtk program using the tutorial here. When I issue the command

gcc -o tut tut.c $(pkg-config --cflags --libs gtk+-2.0 gmodule-2.0)

I get the following error:

gcc: error: unrecognized command line option ‘-pthread -I/usr/include/gtk-2.0
-I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0
-I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0
-I/usr/include/gio-unix-2.0/ -I/usr/include/freetype2 -I/usr/include/glib-2.0
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1
-I/usr/include/libpng12 -I/usr/include/harfbuzz  -Wl,--export-dynamic -pthread
-lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0
-lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfontconfig -lgobject-2.0 -lfreetype
-lgmodule-2.0 -lglib-2.0  ’

gcc is version 4.8.2. pkg-config is version 0.26. i have libgtk2.0-dev installed.

I can compile simple c programs fine.

How do I resolve the "unrecognized command" problem?


[update from comment]

I am using zsh.

Upvotes: 1

Views: 15234

Answers (1)

alk
alk

Reputation: 70981

This looks like a shell issue.

What shell are you using?

In case it's not bash, give bash a try.

Upvotes: 2

Related Questions