We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The named flags did not work for me. I had to add the following code to work around it in the Makefile
DEBUG ?= 1 VERBOSE ?= 1 ... CFLAGS := .... ifneq ($(VERBOSE), 0) CFLAGS += -DVERBOSE=$(VERBOSE) DEBUG = 1 endif ifneq ($(DEBUG), 0) CFLAGS += -DDEBUG=$(DEBUG) endif
Im not quite sure which information to add since Im not very farmiliar with make. I also didn't test it for all the other projects.
make: GNU Make 4.3 OS: Ubuntu 22.04 WSL (Windown 11) latest devkitpro version
The text was updated successfully, but these errors were encountered:
You are right I forgot to update the cpp example. I'll fix it soon
Sorry, something went wrong.
No branches or pull requests
The named flags did not work for me. I had to add the following code to work around it in the Makefile
Im not quite sure which information to add since Im not very farmiliar with make. I also didn't test it for all the other projects.
make: GNU Make 4.3
OS: Ubuntu 22.04 WSL (Windown 11)
latest devkitpro version
The text was updated successfully, but these errors were encountered: