diff options
author | Itamar <itamar8910@gmail.com> | 2020-10-17 14:39:36 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-12-14 23:05:53 +0100 |
commit | efe4da57dfc4d820062455f41fb5f16842268d40 (patch) | |
tree | 35a2958a7ad4d4029403287fc9c612db6c892227 /Applications | |
parent | c917fcbac40cb1f02a0bb88534c702c712168d8a (diff) | |
download | serenity-efe4da57dfc4d820062455f41fb5f16842268d40.zip |
Loader: Stabilize loader & Use shared libraries everywhere :^)
The dynamic loader is now stable enough to be used everywhere in the
system - so this commit does just that.
No More .a Files, Long Live .so's!
Diffstat (limited to 'Applications')
-rw-r--r-- | Applications/Debugger/main.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Applications/Debugger/main.cpp b/Applications/Debugger/main.cpp index 93922f46e4..cefc1ad124 100644 --- a/Applications/Debugger/main.cpp +++ b/Applications/Debugger/main.cpp @@ -212,8 +212,9 @@ int main(int argc, char** argv) sa.sa_handler = handle_sigint; sigaction(SIGINT, &sa, nullptr); - bool rc = g_debug_session->insert_breakpoint(g_debug_session->elf().entry().as_ptr()); - ASSERT(rc); + // bool rc = g_debug_session->insert_breakpoint(g_debug_session->elf().entry().as_ptr()); + // bool rc = g_debug_session->insert_breakpoint((void*)0x08048f49); + // ASSERT(rc); Debug::DebugInfo::SourcePosition previous_source_position; bool in_step_line = false; |