mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:17:35 +00:00
LibMain: Statically link LibMain
LibMain is dynamically linked in every binary. This results in a slightly slower load time. In the past people have pegged this at 0.7 ms on some hardware. This change makes it statically linked and eliminates 0.6 ms of run-time on my machine. This is tested by running a script which just executed `/bin/true` in a loop 10,000 times. Before this patch it reliably executed in ~90,000 ms. After this patch it is ~84,000 ms. This is a speed up of 6,000 ms over 10,000 executions, or 0.6 ms per execution.
This commit is contained in:
parent
e08cd4d608
commit
f7f0195fae
1 changed files with 1 additions and 1 deletions
|
@ -2,5 +2,5 @@ set(SOURCES
|
|||
Main.cpp
|
||||
)
|
||||
|
||||
serenity_lib(LibMain main)
|
||||
serenity_lib_static(LibMain main)
|
||||
target_link_libraries(LibMain LibC)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue