[gn build] (semi-manually) Port 5acd471698

This commit is contained in:
Nico Weber 2022-07-13 18:35:25 -04:00
parent ae93d8ea42
commit 8b391cd908
2 changed files with 5 additions and 0 deletions
llvm/utils/gn/secondary/llvm
lib/ExecutionEngine/Orc/TargetProcess
unittests/ExecutionEngine/Orc

View File

@ -5,6 +5,7 @@ static_library("TargetProcess") {
"//llvm/lib/Support",
]
sources = [
"ExecutorSharedMemoryMapperService.cpp",
"JITLoaderGDB.cpp",
"OrcRTBootstrap.cpp",
"RegisterEHFrames.cpp",
@ -13,4 +14,7 @@ static_library("TargetProcess") {
"SimpleRemoteEPCServer.cpp",
"TargetExecutionUtils.cpp",
]
if (current_os == "linux") {
libs = [ "rt" ]
}
}

View File

@ -28,6 +28,7 @@ unittest("OrcJITTests") {
"OrcTestCommon.cpp",
"RTDyldObjectLinkingLayerTest.cpp",
"ResourceTrackerTest.cpp",
"SharedMemoryMapperTest.cpp",
"SimpleExecutorMemoryManagerTest.cpp",
"SimplePackedSerializationTest.cpp",
"SymbolStringPoolTest.cpp",