Displaying 4 results from an estimated 4 matches for "readercoff".
Did you mean:
header_off
2013 Dec 16
2
[LLVMdev] [lld] What can SVN lld link on Windows?
Hi,
I have tried using SVN lld to link a simple C++ file compiled with
clang -target i686-pc-mingw32 but failed with an assert
Assertion failed: ret, file
..\..\..\..\..\..\tools\lld\lib\ReaderWriter\PECOFF\ReaderCOFF.cpp, line 706
Is this supposed to work?
What can SVN lld link on Windows 32/64 bit?
Yaron
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131216/4580f7b0/attachment.html>
2013 Dec 16
0
[LLVMdev] [lld] What can SVN lld link on Windows?
...PM, Yaron Keren <yaron.keren at gmail.com> wrote:
> Hi,
>
> I have tried using SVN lld to link a simple C++ file compiled with
> clang -target i686-pc-mingw32 but failed with an assert
>
> Assertion failed: ret, file
> ..\..\..\..\..\..\tools\lld\lib\ReaderWriter\PECOFF\ReaderCOFF.cpp, line 706
>
> Is this supposed to work?
>
> What can SVN lld link on Windows 32/64 bit?
>
> Yaron
>
>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.u...
2014 Jul 10
2
[LLVMdev] [lld] LLD's software architecture (update)
I've run a new scan of LLD's architecture and it appears to be getting
cleaner!
There are still some upward dependencies however:
- core depends on Reader and Writer
- passes depend on Reader and Writer
- ReaderWriter/PECOFF/ReaderCOFF.cpp depends on Driver.h
The updated architecture can be seen here:
http://www.c2lang.org/docs/lld_architecture_20140710.png
On Tue, Jun 3, 2014 at 3:07 AM, Rui Ueyama <ruiu at google.com> wrote:
> I will create a patch to move the files and send it for review.
>
>
> On Mon, Ju...
2014 Jun 02
2
[LLVMdev] [lld] LLD's software architecture (update)
On Mon, Jun 2, 2014 at 12:49 AM, Rui Ueyama <ruiu at google.com> wrote:
> I agree to move these files to Core. Any objections?
None here.
- Michael Spencer
>
> On Mon, Jun 2, 2014 at 12:44 AM, Bas van den Berg
> <b.van.den.berg.nl at gmail.com> wrote:
>>
>> The inverted dependency of Core to ReaderWriter via Simple.h was already
>> present.
>> My