-
Notifications
You must be signed in to change notification settings - Fork 620
New issue
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
Make optimization level configurable via CFLAGS
env variable
#363
Make optimization level configurable via CFLAGS
env variable
#363
Conversation
Well, it's kind of possible even without this change. When you set the variable inside make ( So you can just run `make CFLAGS="-Os -std=gnu99" |
Sure, but it still should be agnostic to other flags. |
Let's make
CFLAGS="-Os" make
possible.