How to make ALE aware of compiler flags?
How to make ALE aware of compiler flags?
cross-posted from: https://latte.isnot.coffee/post/288501
ALE gives me a warning when I use gtk
#include <gtk/gtk.h> /* E: gtk/gtk.h: No such file or directory
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?
0
comments