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
c493d4f5b9
llvm-project
/
lld
/
lib
/
CMakeLists.txt
4 lines
79 B
CMake
Raw
Normal View
History
Unescape
Escape
Initial commit. Code by Nick Kledzik. Cleanups and build system by me. llvm-svn: 146844
2011-12-18 16:27:59 +08:00
add_subdirectory
(
Core
)
Add the core architecture for the lld driver. This includes selecting which driver to emulate, option parsing, invocation building, and running the link. This currently only supports a very basic subset of ld for x86_64-linux. lld -flavor ld obj.o -o obj or symlink lld as (ld , link, ld64, core) to get the desired behavior without -flavor. llvm-svn: 169659
2012-12-08 08:47:36 +08:00
add_subdirectory
(
Driver
)
Major refactoring: Remove Platform concept. In its place there are now Reader and Writer subclasses for each file format. Each Reader and Writer subclass defines an "options" class which controls how that Reader or Writer operates. llvm-svn: 157774
2012-06-01 06:34:00 +08:00
add_subdirectory
(
ReaderWriter
)