Merge "Use -fdebug-default-version=4 for assembly files"
This commit is contained in:
@@ -4076,7 +4076,7 @@ func TestIncludeDirectoryOrdering(t *testing.T) {
|
|||||||
{
|
{
|
||||||
name: "assemble",
|
name: "assemble",
|
||||||
src: "foo.s",
|
src: "foo.s",
|
||||||
expected: combineSlices(baseExpectedFlags, []string{"-D__ASSEMBLY__"}, expectedIncludes, lastIncludes),
|
expected: combineSlices(baseExpectedFlags, []string{"-D__ASSEMBLY__", "-fdebug-default-version=4"}, expectedIncludes, lastIncludes),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -495,6 +495,10 @@ func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps
|
|||||||
|
|
||||||
flags.Global.AsFlags = append(flags.Global.AsFlags, "-D__ASSEMBLY__")
|
flags.Global.AsFlags = append(flags.Global.AsFlags, "-D__ASSEMBLY__")
|
||||||
|
|
||||||
|
// TODO(b/235105792): override global -fdebug-default-version=5, it is causing $TMPDIR to
|
||||||
|
// end up in the dwarf data for crtend_so.S.
|
||||||
|
flags.Global.AsFlags = append(flags.Global.AsFlags, "-fdebug-default-version=4")
|
||||||
|
|
||||||
flags.Global.CppFlags = append(flags.Global.CppFlags, tc.Cppflags())
|
flags.Global.CppFlags = append(flags.Global.CppFlags, tc.Cppflags())
|
||||||
|
|
||||||
flags.Global.YasmFlags = append(flags.Global.YasmFlags, tc.YasmFlags())
|
flags.Global.YasmFlags = append(flags.Global.YasmFlags, tc.YasmFlags())
|
||||||
|
Reference in New Issue
Block a user