Ok, so I'm on ubuntu 22.04 and `/usr/include/geany/` exists. If I try this command:
``` gcc -c plugin.c -fPIC `pkg-config --cflags geany -I /usr/include/geany/` ``` I get this error: ``` gcc: error: unrecognized command-line option ‘--cflags’ ``` if I remove that, I get this: ``` gcc -c plugin.c -fPIC `pkg-config -I /usr/include/geany cc1: fatal error: plugin.c: No such file or directory compilation terminated. ``` My gcc version is `gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0` if that makes a difference -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/issues/1357#issuecomment-2185004374 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany-plugins/issues/1357/[email protected]>
