Compiler.debug_flags: drop -gz (#40900)

That enables compression of the debug symbols, it doesn't toggle them on
or off.
This commit is contained in:
Harmen Stoppels
2023-11-13 11:33:40 +01:00
committed by GitHub
parent 491bd48897
commit e6125061e1
3 changed files with 0 additions and 4 deletions

View File

@@ -40,7 +40,6 @@ def debug_flags(self):
"-gdwarf-5", "-gdwarf-5",
"-gline-tables-only", "-gline-tables-only",
"-gmodules", "-gmodules",
"-gz",
"-g", "-g",
] ]

View File

@@ -55,7 +55,6 @@ def debug_flags(self):
"-gdwarf-5", "-gdwarf-5",
"-gline-tables-only", "-gline-tables-only",
"-gmodules", "-gmodules",
"-gz",
"-g", "-g",
] ]

View File

@@ -422,7 +422,6 @@ def test_clang_flags():
"-gdwarf-5", "-gdwarf-5",
"-gline-tables-only", "-gline-tables-only",
"-gmodules", "-gmodules",
"-gz",
"-g", "-g",
], ],
"clang@3.3", "clang@3.3",
@@ -445,7 +444,6 @@ def test_aocc_flags():
"-gdwarf-5", "-gdwarf-5",
"-gline-tables-only", "-gline-tables-only",
"-gmodules", "-gmodules",
"-gz",
"-g", "-g",
], ],
"aocc@2.2.0", "aocc@2.2.0",