Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bd371b65 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Explain checkLinker errors a bit more."

parents f1665501 321bbe92
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -105,7 +105,9 @@ func parseElf(r io.ReaderAt, linker *elf.File) (uint64, error) {

	err = checkLinker(file, linker, symbols)
	if err != nil {
		return 0, err
		return 0, fmt.Errorf("Linker executable failed verification against app embedded linker: %s\n"+
			"linker might not be in sync with crtbegin_dynamic.o.",
			err)
	}

	start, err := findSymbol(symbols, "_start")