> ```shell > gcc -Wall -o "%e" "%f“ `pkg-config --cflags gtk+-3.0` > -DGDK_VERSION_MIN_REQUIRED=GDK_VERSION_3_0 `pkg-config --libs gtk+-3.0` > ```
The issue you have is that the 4th quote (after the `%f`) is not an ASCII quote, but U+201C *Left Double Quotation Mark*. Just replace the command with: ```shell gcc -Wall -o "%e" "%f" $(pkg-config --cflags gtk+-3.0) -DGDK_VERSION_MIN_REQUIRED=GDK_VERSION_3_0 $(pkg-config --libs gtk+-3.0) ``` and you'll be on your way (I also replaced the `\`\` with `$()` because it can be nested, and generally creates less problem when you modify the command -- but functionally it's the same here). -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3863#issuecomment-2092822069 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany/issues/3863/[email protected]>
