Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: HelloWorld_CCA01M1 HelloWorld_CCA02M1 CI-data-logger-server HelloWorld_CCA02M1 ... more
This is a fork of the events subdirectory of https://github.com/ARMmbed/mbed-os.
Note, you must import this library with import name: events!!!
Diff: tools/toolchains/gcc.py
- Revision:
- 6358:fdd3709010f5
- Parent:
- 6355:86cd49f38a3e
- Child:
- 6359:00ee81ac1c20
--- a/tools/toolchains/gcc.py Fri Jun 10 11:27:23 2016 +0100
+++ b/tools/toolchains/gcc.py Fri Jun 10 13:12:21 2016 +0100
@@ -74,11 +74,10 @@
common_flags.append("-save-temps")
if "debug-info" in self.options:
+ common_flags.append("-g")
common_flags.append("-O0")
else:
common_flags.append("-O2")
- # add debug symbols for all builds
- common_flags.append("-g")
main_cc = join(tool_path, "arm-none-eabi-gcc")
main_cppc = join(tool_path, "arm-none-eabi-g++")