Skip to content

Commit 37a5646

Browse files
author
deepikabhavnani
committed
Remove deprecated linker options
Resolved below warnings Warning: L3912W: Option 'legacyalign' is deprecated. Warning: L3912W: Option 'no_strict_wchar_size' is deprecated. Warning: L3912W: Option 'no_strict_enum_size' is deprecated.
1 parent 6366452 commit 37a5646

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

tools/profiles/debug.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
"asm": [],
2424
"c": ["-D__ASSERT_MSG", "-std=gnu99"],
2525
"cxx": ["-fno-rtti", "-std=gnu++98"],
26-
"ld": ["--verbose", "--remove", "--legacyalign", "--no_strict_wchar_size",
27-
"--no_strict_enum_size", "--show_full_path"]
26+
"ld": ["--verbose", "--remove", "--show_full_path"]
2827
},
2928
"ARM": {
3029
"common": ["-c", "--gnu", "-Otime", "--split_sections",

tools/profiles/develop.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"asm": [],
2323
"c": ["-D__ASSERT_MSG", "-std=gnu99"],
2424
"cxx": ["-fno-rtti", "-std=gnu++98"],
25-
"ld": ["--legacyalign", "--no_strict_wchar_size", "--no_strict_enum_size", "--show_full_path"]
25+
"ld": ["--show_full_path"]
2626
},
2727
"ARM": {
2828
"common": ["-c", "--gnu", "-Otime", "--split_sections",

tools/profiles/release.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
"asm": [],
2323
"c": ["-D__ASSERT_MSG", "-std=gnu99"],
2424
"cxx": ["-fno-rtti", "-std=gnu++98"],
25-
"ld": ["--legacyalign", "--no_strict_wchar_size", "--no_strict_enum_size",
26-
"--show_full_path"]
25+
"ld": ["--show_full_path"]
2726
},
2827
"ARM": {
2928
"common": ["-c", "--gnu", "-Ospace", "--split_sections",

0 commit comments

Comments
 (0)