This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
1f5580b6f3
llvm-project
/
llvm
/
lib
/
ExecutionEngine
/
RuntimeDyld
/
CMakeLists.txt
6 lines
99 B
CMake
Raw
Normal View
History
Unescape
Escape
Library-ize the dyld components of llvm-rtdyld. Move the dynamic linking functionality of the llvm-rtdyld program into an ExecutionEngine support library. Update llvm-rtdyld to just load an object file into memory, use the library to process it, then run the _main() function, if one is found. llvm-svn: 128031
2011-03-22 06:15:52 +08:00
add_llvm_library
(
LLVMRuntimeDyld
R
u
n
t
i
m
e
D
y
l
d
.
c
p
p
Add to RuntimeDyld support different object formats llvm-svn: 135037
2011-07-13 15:57:58 +08:00
R
u
n
t
i
m
e
D
y
l
d
M
a
c
h
O
.
c
p
p
Adding a basic ELF dynamic loader and MC-JIT for ELF. Functionality is currently basic and will be enhanced with future patches. Patch developed by Andy Kaylor and Daniel Malea. Reviewed on llvm-commits. llvm-svn: 148231
2012-01-16 16:56:09 +08:00
R
u
n
t
i
m
e
D
y
l
d
E
L
F
.
c
p
p
Library-ize the dyld components of llvm-rtdyld. Move the dynamic linking functionality of the llvm-rtdyld program into an ExecutionEngine support library. Update llvm-rtdyld to just load an object file into memory, use the library to process it, then run the _main() function, if one is found. llvm-svn: 128031
2011-03-22 06:15:52 +08:00
)