Skip to content
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

Moved partial profile to a subdirectory #11213

Merged
merged 3 commits into from
Aug 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion platform/source/minimal-printf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ To replace the standard implementation of the printf functions with the ones in
Compile with mbed-cli using the custom `minimal-printf` profile. For example, to compile in release mode:

```
$ mbed compile -t <toolchain> -m <target> --profile release --profile minimal-printf
$ mbed compile -t <toolchain> -m <target> --profile release --profile mbed-os/tools/profiles/extensions/minimal-printf.json
```

## Size comparison
Expand Down
4 changes: 2 additions & 2 deletions tools/export/gnuarmeclipse/.cproject.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
<listOptionValue builtIn="false" value="&quot;${ProjDirPath}/{{file}}&quot;"/>
{% endfor %}
</option>
{% if opts['c'].get('compiler.std') %}
{% if opts['c']['compiler.std'] %}
<option id="ilg.gnuarmeclipse.managedbuild.cross.option.c.compiler.std.{{u.id}}" superClass="ilg.gnuarmeclipse.managedbuild.cross.option.c.compiler.std" value="ilg.gnuarmeclipse.managedbuild.cross.option.c.compiler.std.{{opts['c']['compiler.std']}}" valueType="enumerated"/>
{% endif %}
{% if opts['c']['otheroptimizations'] != '' %}
Expand Down Expand Up @@ -263,7 +263,7 @@
<listOptionValue builtIn="false" value="&quot;${ProjDirPath}/{{file}}&quot;"/>
{% endfor %}
</option>
{% if opts['cpp'].get('compiler.std') %}
{% if opts['cpp']['compiler.std'] %}
<option id="ilg.gnuarmeclipse.managedbuild.cross.option.cpp.compiler.std.{{u.id}}" superClass="ilg.gnuarmeclipse.managedbuild.cross.option.cpp.compiler.std" value="ilg.gnuarmeclipse.managedbuild.cross.option.cpp.compiler.std.{{opts['cpp']['compiler.std']}}" valueType="enumerated"/>
{% endif %}

Expand Down