February 04, 2014
On 2/3/2014 10:01 AM, Kai Nacke wrote:
> Thanks for the announcement. It was really fun. :-)

Submit it for OSCON?

http://www.oscon.com/oscon2014/public/cfp/311
February 04, 2014
On Monday, 3 February 2014 at 20:05:27 UTC, Andrei Alexandrescu wrote:
> On 2/3/14, 11:46 AM, Walter Bright wrote:
>> On 2/3/2014 10:01 AM, Kai Nacke wrote:
>>> Thanks for the announcement. It was really fun. :-)
>>>
>>> The slides are already at the FOSDEM site and will be available on the
>>> LLVM site
>>> soon.
>>>
>>> https://fosdem.org/2014/schedule/event/ldccompiler/
>>> http://www.llvm.org/devmtg/2014-02/
>>>
>>> The recordings will also be available soon.
>>
>> Wonderful! Very good slide deck.
>
> Will a talk recording be available?
>
> Andrei

Yes, the recording will be made available. I'll post the link when available.

Regards,
Kai
February 05, 2014
Hi bearophile!

On Sunday, 2 February 2014 at 13:46:50 UTC, bearophile wrote:
> Slide 21, Integrating AdressSanitizer:
>
> I have tried to compile this code (adapted from this page: http://clang.llvm.org/docs/AddressSanitizer.html ):
>
>
> int main(string[] args) {
>     auto array = (new int[100]).ptr;
>     delete array;
>     return array[args.length];
> }
>
>
> It gives me:
>
> ...>ldmd2 -release -noboundscheck -sanitize=address -run test.d
> .../mingw/bin/../lib/gcc/i686-w64-mingw32/4.8.0/../../../../i686-w64-mingw32/bin/ld.exe: cannot find -lasan
> collect2.exe: error: ld returned 1 exit status
> Error: C:\MinGW\bin\gcc.exe failed with status: 1
>

You need to install compiler-rt. It includes the asan libraray.

Regards,
Kai
1 2
Next ›   Last »