-
Notifications
You must be signed in to change notification settings - Fork 447
Update Arduino.mk #415
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
Update Arduino.mk #415
Conversation
@sej7278 What are you thoughts on this? @thalesmaoa Can you also please update HISTORY.md file with a brief summary of the change? |
i've no idea what its supposed to do lol |
I don't know really if it is the best way to fix a bug, but I will explain I've made a standalone program to use with an arduino based processor. When I realized that no_core = yes and mcu = atmega2560 flag keeps arduino lib This message is what I was trying to fix.
Best regards |
seems odd though, as we put all of the calls to PARSE_BOARD inside the NO_CORE block as if you're not using the arduino core, you also wouldn't have a boards.txt file to parse. surely the solution to your problem would be to put also you've duplicated that code block, rather than moving it. |
You are right, but I do use arduino core. It was just my workaround to no Sorry to duplicate, I didn't notice, but it is not a good solution indeed. 2016-03-01 8:50 GMT-03:00 Simon John [email protected]:
|
so you're using the arduino core but none of the libraries, and want to not compile the built-in libraries? that's issue #29 which is the same way the ide does it - the libraries are compiled so its a bit slow, but they're not linked so take up no memory in the final hex. |
That is the reason why I quit IDE as well. :) I know it does not increase hex size, but pollute my make output and 2016-03-01 9:47 GMT-03:00 Simon John [email protected]:
|
well if you don't mind it compiling the unused libraries and just want it to be quiet in the output then probably setting ARDUINO_QUIET may be of some interest to you also |
Thanks for the PR. Please see @sej7278's suggestion above. I am closing this without merging. But feel free to re-open if you have additional information. |
Added some break lines.
Just want to compile the program without arduino lib, no no_core flag does not let know processor size.