gtk3 can not be compiled with vte - c

I'm trying to integrate a terminal on my Gtk3 app but when i compile the app,
i got that error.
(csimpleide:9858): Gtk-ERROR **: GTK+ 2.x symbols detected. Using GTK+ 2.x and GTK+ 3 in the same process is not supported
Trace/breakpoint trap (core dumped)
because the vte lib use gtk2.
i use this command to compile.
gcc -o test test.c `pkg-config --cflags --libs gtk+-3.0 vte`
how i can resolve this ??

You should define a gtk3 based VTE library version, on my Ubuntu 14.04 PC, the appropriate vte version is 2.90, so the compilation command would be:
gcc -o test test.c `pkg-config --cflags --libs gtk+-3.0 vte-2.90`

Related

How to force Xcode 14 to compile GTK project in C

I would like to force Xcode 14 to compile my simple GTK2 project.
I couldn't find in Google how to add some flags to the compiler.
Could you please give some hints or screenshots?
This what I'd like to achieve is to Run the project using the "play" button or shortcut: CMD + R
I am using a following command to compile my project:
gcc-12 -Wall -g hello.c -o helloworld `pkg-config --cflags gtk+-2.0` `pkg-config --libs gtk+-2.0`
However it also works with clang compiler:
clang-g hello.c -o helloworld `pkg-config --cflags gtk+-2.0` `pkg-config --libs gtk+-2.0`
In addition to that, I'd like also to resolve the problem that Xcode can't see GTK library.
Thank you for any help.

Clang doesn't link dependencies of GTK3 and Webkit2GTK

I'm making a simple web browser using GTK3 and Webkit2GTK. When compiling the program, it doesn't have any error, but when I try to run it, I got this error:
$ ./a.out
CANNOT LINK EXECUTABLE "./a.out": library "libGL.so" not found
I tried to compile the program with -lGL, but it throws another executable link error.
What did I doing wrong? This is my command:
clang main.c `pkg-config --cflags --libs gtk+-3.0 webkit2gtk-4.0`

How to build an executable file cross platform from linux to windows?

I wrote a GTK3+ project in c , and i am trying to build it so i can make it into a executable file for windows , and i have no idea on how to do it , i saw some articles about building .exe files using MingW so i tried it as such :
x86_64-w64-mingw32-gcc -g -o test PROJECT_INTERFACE.c PROJECT.c pkg-config --libs gtk+-3.0 pkg-config --cflags gtk+-3.0
but i get this error message :
error
can someone help me with building this project for end-user?

Not able to compile GTK3+ program on windows

I am using MinGW and I have set the path for the same in the Environment Variables. I have also set the path for GTK in the Environment Variables.
MInGW has been set up successfully since I am able to use the gcc commands to compile regular C programs.
Even GTK has been set up successfully (confirmed by entering pkg-config --cflags gtk+-3.0 in cmd which prints out a list of variables and also ran a already compiled GTK application succesfully).
I have also set the path for pkgconfig in the Environment Variables.
Variable Name-PKG_CONFIG_PATH and Value-C:\gtk\lib\pkgconfig
Even after the complete set up, there are some errors which occur when I try compiling a GTK program.
Command used:
gcc hello.c -o hello 'pkg-config --cflags --libs gtk+-3.0'
Note: I have used ` in the actual command and not '(used ' here to prevent highlighting).
Errors:
pkg-config no such directory found.
gtk+-3.0 no such directory found
unrecognized command line option --cflags unrecognized command line
option --labs
Tools I tried:
Windows cmd
MingW Shell
MSYS2
Cygwin Terminal (I haven't set up Cygwin path in the environment variables to prevent errors between Cygwin and MingW)
Can someone help me in figuring out what's the actual issue even after completing all the set up steps I mentioned above? Please help me!
Forums I already checked out:
Compiling and running GTK+ application on Windows 7
http://www.tarnyko.net/repo/gtk3_build_system/tutorial/gtk3_tutorial.htm
And more...But nothing has helped me so far!
So I understand you have been using:
gcc hello.c -o hello `pkg-config --cflags --libs gtk+-3.0`
You appear to be trying to be clever with pkg-config. Have you tried using --libs & --cflags separately?
e.g.:
gcc `pkg-config --cflags gtk+-3.0` -o hello hello.c `pkg-config --libs gtk+-3.0`
For more info see here

GStreamer: No such file or directory

I am working on a project that I need to display video to a window. So I do some research and find out GStreamer lib is probably a good way to go since I have a GUI written with GTK. However, after 2 hours trying to install and compile GStream on my Mac, I still get:
error: gts/gts.h: No such file or directory
What I did is install Gstreamer SDK for Mac OS from the official website. Export path:
export PATH=/Library/Frameworks/GStreamer.framework/Version/0.10/Headers:$PATH
Compile:
gcc test.c `pkg-config --cflags --libs gtk+-2.0` `pkg-config --cflags --libs gtk-1.0`
But I have no luck!. Please help!!!
First of all: You can't specify GCC's include path using the PATH variable. Its sole purpose is for the shell (or to be more specific: for the various flavors of exec()) to find executables you want to run.
You might want to modify your gcc command line like that (gstreamer-0.10 instead of gst-0.10):
gcc test.c `pkg-config --cflags --libs gtk+-2.0 gtk-1.0 gstreamer-0.10`
If that still doesn't work, look at the output of the pkgconfig command (by running it alone):
pkg-config --cflags --libs gtk+-2.0 gtk-1.0 gstreamer-0.10
That should give you either a list of gcc flags or an error message that should help you resolve your issue.

Resources