I'm trying to get some fairly basic code to run with webkit2gtk, however I'm having issues linking. I cut my code down to 2 lines just to get the error ```c
#include <webkitgtk-4.0/webkit2/webkit2.h>
int main(void) { g_signal_connect(0,0,0,0); }
When I run this with `cc -lglib-2.0 -lgtk-3 -lwebkit2gtk main.c` I get an error saying ```
/usr/bin/ld: /usr/lib64/gcc/x86_64-linux-musl/13.2.0/../../../../lib64/libgtk-3.so: undefined reference to symbol 'g_signal_connect_data'
/usr/bin/ld: /lib64/libgobject-2.0.so.0: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
I have no clue why, so if anyone could help me.