search for: 8b9c

Displaying 4 results from an estimated 4 matches for "8b9c".

Did you mean: 8b9a
2014 May 30
3
[LLVMdev] Error with Gold Linker during LTO
...weakMainO1.exe | grep -A 10 "<_ZN1C13caller_methodEv>:" I see: 00008b88 <_ZN1C13caller_methodEv>: 8b88: e92d4800 push {fp, lr} 8b8c: e1a0b00d mov fp, sp 8b90: e24dd008 sub sp, sp, #8 8b94: e58d0004 str r0, [sp, #4] 8b98: e59d0004 ldr r0, [sp, #4] 8b9c: ebffdd17 bl 0 <__preinit_array_end> 8ba0: e1a0d00b mov sp, fp 8ba4: e8bd4800 pop {fp, lr} 8ba8: e12fff1e bx lr where the bl 0 causes a seg fault. I'll check x86_64, but currently don't have that setup, so it'll take me a little bit of time to check. -----Origin...
2015 Jul 20
1
Hot Cloning - clone running Virtual Machines
...ome specific fields in the XML. As I run several instances on the same server, I need to provide different names and UUIDs to avoid collisions. Unfortunately, libvirt forbids this operation issuing the following error message: error: unsupported configuration: Target domain uuid 7c85e288-88fe-43d2-8b9c-89af4c83c10a does not match source 62f28517-8601-4d2e-942c-a20d087f9f4a Same thing applies with the name field. Is this a limitation of the API or it is a designed protection mechanism? Would it be possible to overcome this limit? Thank you.
2014 May 30
2
[LLVMdev] Error with Gold Linker during LTO
...ethodEv>: > 8b88: e92d4800 push {fp, lr} > 8b8c: e1a0b00d mov fp, sp > 8b90: e24dd008 sub sp, sp, #8 > 8b94: e58d0004 str r0, [sp, #4] > 8b98: e59d0004 ldr r0, [sp, #4] > 8b9c: ebffdd17 bl 0 <__preinit_array_end> > 8ba0: e1a0d00b mov sp, fp > 8ba4: e8bd4800 pop {fp, lr} > 8ba8: e12fff1e bx lr > > where the bl 0 causes a seg fault. > > I'll check x86_64, but cu...
2014 May 30
4
[LLVMdev] Error with Gold Linker during LTO
We've found an error during the use of LTO that appears to happen only during the use of the gold linker. We essentially have a file which is compiled *without* LTO: f1() { h1(); } And a second file that is compiled/linked *with* LTO: f2() { f1(); h1(); } This second file has the function h1() inlined during LTO. The resulting executable fails because the symbol for h1