-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Exporters and toolchains - flags to be shared #1671
Comments
I'll be using properties instead of getters, but the idea is the same. http://stackoverflow.com/questions/6618002/python-property-versus-getters-and-setters |
ARM Internal Ref: IOTMORF-203 |
This has been done a long time ago, lets get this closed out @sg- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Toolchain scripts have defined flags internal in the methods (mostly init). Therefore exporters ducplicate some but not all.
As an example for uvision (ARM) the flash size reported in the online IDE for BLE Thermometer (mkit target) is around 28k flash, exported to uvision - 48k flash.
For ARM class, in the
__init__
:In the uvision template, --restrict --multibyte_chars -Otime --split_sections flags are not set. This should be unified.
I imagine a toolchain class have methods:
get_common_flags
,get_c_flags
,get_ccp_flags
, andget_ld_flags
.The text was updated successfully, but these errors were encountered: