Skip to content

Commit

Permalink
build_script_generator: Add trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
rleh committed Sep 14, 2020
1 parent 5268d8d commit 3da506f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/build_script_generator/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,9 @@ def common_compiler_flags(compiler, target):
"-funsigned-char",
"-fwrapv",
# "-fmerge-all-constants",

"-g3",
"-gdwarf-3"
"-gdwarf-3",
]

if target.identifier["platform"] not in ["hosted"]:
Expand Down Expand Up @@ -264,7 +265,7 @@ def common_compiler_flags(compiler, target):
# flags only for Assembly
flags["asflags"] = [
"-g3",
"-gdwarf-3"
"-gdwarf-3",
# "-xassembler-with-cpp",
]
# flags for the linker
Expand Down

0 comments on commit 3da506f

Please sign in to comment.