1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:37:35 +00:00

LibJIT+LibJS: Move JIT::Assembler into a new LibJIT library

This will allow other parts of the system to generate machine code
at runtime. :^)
This commit is contained in:
Andreas Kling 2023-10-26 15:18:28 +02:00
parent bfb527e614
commit 5b87d26027
7 changed files with 15 additions and 6 deletions

View file

@ -24,7 +24,6 @@ set(SOURCES
Heap/Heap.cpp
Heap/HeapBlock.cpp
Heap/MarkedVector.cpp
JIT/Assembler.cpp
JIT/Compiler.cpp
JIT/NativeExecutable.cpp
Lexer.cpp
@ -268,4 +267,4 @@ set(SOURCES
)
serenity_lib(LibJS js)
target_link_libraries(LibJS PRIVATE LibCore LibCrypto LibFileSystem LibRegex LibSyntax LibLocale LibUnicode)
target_link_libraries(LibJS PRIVATE LibCore LibCrypto LibFileSystem LibRegex LibSyntax LibLocale LibUnicode LibJIT)