Skip to content

Commit a7b0cf1

Browse files
committed
Incorporated review comments
1 parent 828dc84 commit a7b0cf1

File tree

2 files changed

+10
-13
lines changed

2 files changed

+10
-13
lines changed

TESTS/configs/baremetal.json

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,29 +35,26 @@
3535
"qspif"
3636
],
3737
"target_overrides": {
38-
"K64F": {
39-
"target.default_lib": "small",
38+
"*": {
4039
"mbed-trace.fea-ipv6": false
4140
},
41+
"K64F": {
42+
"target.default_lib": "small"
43+
},
4244
"K66F": {
43-
"target.default_lib": "small",
44-
"mbed-trace.fea-ipv6": false
45+
"target.default_lib": "small"
4546
},
4647
"NUCLEO_F303RE": {
47-
"target.default_lib": "small",
48-
"mbed-trace.fea-ipv6": false
48+
"target.default_lib": "small"
4949
},
5050
"NUCLEO_F411RE": {
51-
"target.default_lib": "small",
52-
"mbed-trace.fea-ipv6": false
51+
"target.default_lib": "small"
5352
},
5453
"NUCLEO_F429ZI": {
55-
"target.default_lib": "small",
56-
"mbed-trace.fea-ipv6": false
54+
"target.default_lib": "small"
5755
},
5856
"DISCO_L475VG_IOT01A": {
59-
"target.default_lib": "small",
60-
"mbed-trace.fea-ipv6": false
57+
"target.default_lib": "small"
6158
}
6259
}
6360
}

tools/toolchains/gcc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __init__(self, target, notify=None, macros=None, build_profile=None,
4848

4949
tool_path = TOOLCHAIN_PATHS['GCC_ARM']
5050
# Add flags for current size setting
51-
default_lib = ""
51+
default_lib = "std"
5252
if hasattr(target, "default_lib"):
5353
self.check_c_lib_supported(target, "gcc_arm")
5454
default_lib = target.default_lib

0 commit comments

Comments
 (0)