Did not mean any disrespect just thought it might have been quicker. I'll learn - first post to github.
Actually he had the changes listed in his "Comments" section for cut/paste where C commands first entry is named "Compile", and should contain the following: *gcc -Wall -c "%f".* Add the following text so the end result is to be like: *gcc -Wall -c "%f" `pkg-config --cflags gtk+-3.0` DGDK_VERSION_MIN_REQUIRED=GDK_VERSION_3_0 * For the Build: *gcc -Wall -o "%e" "%f" * should be turned into: *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`* He also had fixes for .cpp programs This worked on BOTH Geany & Code::Blocks for the compile phase, still fails on build. Thanks. On Thu, May 2, 2024 at 3:20 AM elextr ***@***.***> wrote: > ALL settings are default with the exceptions mentioned in that youtube > video. > > You are asking for help, so requiring people to watch a video to be able > to help you means you have reduced the number who will bother, they simply > don't have time. > > As I said, the default "Build" operation for C language does not use > /bin/sh so either you have changed something or you are not performing a > "Build" operation. > > — > Reply to this email directly, view it on GitHub > <https://github.com/geany/geany/issues/3863#issuecomment-2089782075>, or > unsubscribe > <https://github.com/notifications/unsubscribe-auth/BIGX5Y3ZB3TXCTHB4UWZA4DZAHSLLAVCNFSM6AAAAABHCDQHLGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAOBZG44DEMBXGU> > . > You are receiving this because you authored the thread.Message ID: > ***@***.***> > -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3863#issuecomment-2089892905 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany/issues/3863/[email protected]>
