mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #5708 from SeppoTakalo/debug_info
Add minimal debug info to release and develop profiles.pull/5732/merge
commit
31f7ea7688
|
@ -5,7 +5,7 @@
|
||||||
"-fmessage-length=0", "-fno-exceptions", "-fno-builtin",
|
"-fmessage-length=0", "-fno-exceptions", "-fno-builtin",
|
||||||
"-ffunction-sections", "-fdata-sections", "-funsigned-char",
|
"-ffunction-sections", "-fdata-sections", "-funsigned-char",
|
||||||
"-MMD", "-fno-delete-null-pointer-checks",
|
"-MMD", "-fno-delete-null-pointer-checks",
|
||||||
"-fomit-frame-pointer", "-Os"],
|
"-fomit-frame-pointer", "-Os", "-g1"],
|
||||||
"asm": ["-x", "assembler-with-cpp"],
|
"asm": ["-x", "assembler-with-cpp"],
|
||||||
"c": ["-std=gnu99"],
|
"c": ["-std=gnu99"],
|
||||||
"cxx": ["-std=gnu++98", "-fno-rtti", "-Wvla"],
|
"cxx": ["-std=gnu++98", "-fno-rtti", "-Wvla"],
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"-fmessage-length=0", "-fno-exceptions", "-fno-builtin",
|
"-fmessage-length=0", "-fno-exceptions", "-fno-builtin",
|
||||||
"-ffunction-sections", "-fdata-sections", "-funsigned-char",
|
"-ffunction-sections", "-fdata-sections", "-funsigned-char",
|
||||||
"-MMD", "-fno-delete-null-pointer-checks",
|
"-MMD", "-fno-delete-null-pointer-checks",
|
||||||
"-fomit-frame-pointer", "-Os", "-DNDEBUG"],
|
"-fomit-frame-pointer", "-Os", "-DNDEBUG", "-g1"],
|
||||||
"asm": ["-x", "assembler-with-cpp"],
|
"asm": ["-x", "assembler-with-cpp"],
|
||||||
"c": ["-std=gnu99"],
|
"c": ["-std=gnu99"],
|
||||||
"cxx": ["-std=gnu++98", "-fno-rtti", "-Wvla"],
|
"cxx": ["-std=gnu++98", "-fno-rtti", "-Wvla"],
|
||||||
|
|
Loading…
Reference in New Issue