diff options
author | Simon Atanasyan <simon@atanasyan.com> | 2015-11-26 05:53:00 +0000 |
---|---|---|
committer | Simon Atanasyan <simon@atanasyan.com> | 2015-11-26 05:53:00 +0000 |
commit | 16b0cc9ee687d03d554dd54a17907ee7d00397c8 (patch) | |
tree | 86075944a63fe5fc3a5678e7aa878f9c8d4e0d1a /lld/ELF/LinkerScript.cpp | |
parent | 5e35e669a58fad4f39ecea7289f5271fe89dafb9 (diff) | |
download | bcm5719-llvm-16b0cc9ee687d03d554dd54a17907ee7d00397c8.tar.gz bcm5719-llvm-16b0cc9ee687d03d554dd54a17907ee7d00397c8.zip |
[ELF] Reapply r254031 - LinkerScript: lookup absolute paths under sysroot
In case a sysroot prefix is configured, and the filename starts with
the '/' character, and the script being processed was located inside
the sysroot prefix, the file's name will be looked for in the sysroot
prefix. Otherwise, the linker falls to the common lookup scheme.
It is slightly modified version of the commit r254031. The problem of
the initial commit was in the `is_absolute` call. On Windows 'C:\' is
absolute path but we do not need to find it under sysroot. In this patch
linker looks up a path under sysroot only if the paths starts with '/'
character.
llvm-svn: 254135
Diffstat (limited to 'lld/ELF/LinkerScript.cpp')
-rw-r--r-- | lld/ELF/LinkerScript.cpp | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp index 03c5fc4fca7..5e56b50e7d4 100644 --- a/lld/ELF/LinkerScript.cpp +++ b/lld/ELF/LinkerScript.cpp @@ -28,8 +28,8 @@ using namespace lld::elf2; namespace { class LinkerScript { public: - LinkerScript(BumpPtrAllocator *A, StringRef S) - : Saver(*A), Tokens(tokenize(S)) {} + LinkerScript(BumpPtrAllocator *A, StringRef S, bool B) + : Saver(*A), Tokens(tokenize(S)), IsUnderSysroot(B) {} void run(); private: @@ -58,6 +58,7 @@ private: StringSaver Saver; std::vector<StringRef> Tokens; size_t Pos = 0; + bool IsUnderSysroot; }; } @@ -160,6 +161,15 @@ void LinkerScript::expect(StringRef Expect) { } void LinkerScript::addFile(StringRef S) { + if (IsUnderSysroot && S.startswith("/")) { + SmallString<128> Path; + (Config->Sysroot + S).toStringRef(Path); + if (sys::fs::exists(Path)) { + Driver->addFile(Saver.save(Path.str())); + return; + } + } + if (sys::path::is_absolute(S)) { Driver->addFile(S); } else if (S.startswith("=")) { @@ -290,7 +300,17 @@ void LinkerScript::readOutputSectionDescription() { } } +static bool isUnderSysroot(StringRef Path) { + if (Config->Sysroot == "") + return false; + for (; !Path.empty(); Path = sys::path::parent_path(Path)) + if (sys::fs::equivalent(Config->Sysroot, Path)) + return true; + return false; +} + // Entry point. The other functions or classes are private to this file. void lld::elf2::readLinkerScript(BumpPtrAllocator *A, MemoryBufferRef MB) { - LinkerScript(A, MB.getBuffer()).run(); + StringRef Path = MB.getBufferIdentifier(); + LinkerScript(A, MB.getBuffer(), isUnderSysroot(Path)).run(); } |