search for: cmello

Displaying 3 results from an estimated 3 matches for "cmello".

Did you mean: chello
2012 Jun 17
3
[LLVMdev] Building lld with Visual Studio 2012 RC
...WriterOptionsPECOFF &options) { assert(0 && "PE/COFF support not implemented yet"); return nullptr; } :-) Best regards! Mello On Sat, Jun 16, 2012 at 10:22 PM, Michael Spencer <bigcheesegs at gmail.com>wrote: > On Sat, Jun 16, 2012 at 4:15 PM, Cesar Mello <cmello at gmail.com> wrote: > > Hi! > > > > I'm trying to build lld Microsoft Visual Studio 2012 RC, but it seems the > > bzero function is not available. > > > > Could memset be used instead of bzero? Or maybe define a bzero for msvc > > using memset. >...
2012 Jun 17
0
[LLVMdev] Building lld with Visual Studio 2012 RC
On Sat, Jun 16, 2012 at 4:15 PM, Cesar Mello <cmello at gmail.com> wrote: > Hi! > > I'm trying to build lld Microsoft Visual Studio 2012 RC, but it seems the > bzero function is not available. > > Could memset be used instead of bzero? Or maybe define a bzero for msvc > using memset. > > For example: > >      ...
2012 Jun 16
3
[LLVMdev] Building lld with Visual Studio 2012 RC
Hi! I'm trying to build lld Microsoft Visual Studio 2012 RC, but it seems the bzero function is not available. Could memset be used instead of bzero? Or maybe define a bzero for msvc using memset. For example: // in-memory matches on-disk, so copy first fields followed by path ::memcpy(to, (uint8_t*)&cmd, 12); ::memcpy(&to[12], _name.data(), _name.size());