mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
efec344803
It will be used in the following commit to introduce a new utility to use this method.
28 lines
679 B
C++
28 lines
679 B
C++
/*
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Result.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibELF/DynamicObject.h>
|
|
|
|
namespace ELF {
|
|
|
|
class DynamicLinker {
|
|
public:
|
|
static Optional<DynamicObject::SymbolLookupResult> lookup_global_symbol(StringView symbol);
|
|
[[noreturn]] static void linker_main(DeprecatedString&& main_program_path, int fd, bool is_secure, int argc, char** argv, char** envp);
|
|
|
|
static Optional<DeprecatedString> resolve_library(DeprecatedString const& name, DynamicObject const& parent_object);
|
|
|
|
private:
|
|
DynamicLinker() = delete;
|
|
~DynamicLinker() = delete;
|
|
};
|
|
|
|
}
|