cross-posted from: https://latte.isnot.coffee/post/288501
ALE gives me a warning when I use gtk
This is probably happening because ALE isn’t using my compiler flags
gcc $( pkg-config --cflags gtk4 ) -o program main.c $( pkg-config --libs gtk4 )
that I stole from the gtk documentation. These compiler flags allow gcc to findgtk/gtk.h
even though it is ingtk-4.0/gtk/gtk.h
How do I make ALE aware of my compiler flags?
You must log in or register to comment.