This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from ee085a3fb [ELF] Fix issue with test when build path contains '@' new b42b3bc59 LLD: Introduce a GNU LD style driver for COFF
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: CMakeLists.txt | 1 + ELF/Driver.cpp | 8 +- MinGW/CMakeLists.txt | 20 ++ MinGW/Driver.cpp | 204 +++++++++++++++++++++ MinGW/Options.td | 34 ++++ include/lld/Driver/Driver.h | 5 + .../Inputs/imagebase-aarch64.yaml} | 41 ++--- .../Inputs/imagebase-arm.yaml} | 41 ++--- .../Inputs/imagebase-i386.yaml} | 41 ++--- .../Inputs/imagebase-x86_64.yaml} | 39 ++-- test/MinGW/output.test | 52 ++++++ tools/lld/CMakeLists.txt | 1 + tools/lld/lld.cpp | 12 ++ 13 files changed, 410 insertions(+), 89 deletions(-) create mode 100644 MinGW/CMakeLists.txt create mode 100644 MinGW/Driver.cpp create mode 100644 MinGW/Options.td copy test/{COFF/Inputs/import.yaml => MinGW/Inputs/imagebase-aarch64.yaml} (56%) copy test/{COFF/Inputs/import.yaml => MinGW/Inputs/imagebase-arm.yaml} (56%) copy test/{COFF/Inputs/import.yaml => MinGW/Inputs/imagebase-i386.yaml} (54%) copy test/{COFF/Inputs/import.yaml => MinGW/Inputs/imagebase-x86_64.yaml} (59%) create mode 100644 test/MinGW/output.test