Displaying 7 results from an estimated 7 matches for "l432".
Did you mean:
432
2020 Jan 16
3
Re: libvirt-python: issue on fedora
On Wed, Jan 15, 2020 at 07:04:06PM +0100, Matthias Tafelmeier wrote:
>
> Hello,
>
> ran into oddish glitch on fedora 30 cloud image with tooling based on
> libvirt-python onpython3.7. *qemu-img *is installed though. Could anyone
> have a look.
I don't see qemu-img installed there. You've requested 'qemu-kvm' and
'qemu-system-x86' which provide the
2020 Jan 16
2
Re: libvirt-python: issue on fedora
...dancy of
> > qemu-system-x86, but you've not told apt to install recommendations
> > AFAICT from that log
> >
> >
> Thanks for coming back. With greatest respect, I can see it clearly
> installed here:
>
> https://travis-ci.com/cherusk/godon/builds/144068483#L432
>
> Probably you're right, but find the separately packaged *qemu-img
> *non-intiutitive or confusing then.
> **
Oh you have two installs of libvirt here. One in the Ubuntu image
that's running the job. This one lacks qemu-img. The second install
is the Docker container you...
2016 May 26
1
Potential ambiguity in the grammar of LLVM IR assembly
...is would open up for very interesting possibilities.
Given that global variables may be unnamed, does the unnamed_addr
introduce an ambiguity in the LLVM IR grammar?
Cheers
/u
[1]: http://llvm.org/docs/LangRef.html
[2]:
https://github.com/llvm-mirror/llvm/blob/master/lib/AsmParser/LLParser.cpp#L432
[3]: https://github.com/mewspring/poc/blob/master/ll/b.ll
On 05/26/2016 02:42 AM, Tim Northover wrote:
> On 25 May 2016 at 16:10, Robin Eklind via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
>> declare void @foo() unnamed_addr
>> global i32 42
>
> Doesn't a glo...
2020 Jan 16
0
Re: libvirt-python: issue on fedora
...9; package, which is a Recommended dependancy of
> qemu-system-x86, but you've not told apt to install recommendations
> AFAICT from that log
>
>
Thanks for coming back. With greatest respect, I can see it clearly
installed here:
https://travis-ci.com/cherusk/godon/builds/144068483#L432
Probably you're right, but find the separately packaged *qemu-img
*non-intiutitive or confusing then.
**
--
Regards
Matthias
2020 Jan 16
0
Re: libvirt-python: issue on fedora
Hi Daniel
>> Thanks for coming back. With greatest respect, I can see it clearly
>> installed here:
>>
>> https://travis-ci.com/cherusk/godon/builds/144068483#L432
>>
>> Probably you're right, but find the separately packaged *qemu-img
>> *non-intiutitive or confusing then.
>> **
> Oh you have two installs of libvirt here. One in the Ubuntu image
> that's running the job. This one lacks qemu-img. The second install
> i...
2016 May 26
0
Potential ambiguity in the grammar of LLVM IR assembly
On 25 May 2016 at 16:10, Robin Eklind via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> declare void @foo() unnamed_addr
> global i32 42
Doesn't a global have to be named? The syntax in the IR reference
doesn't make it optional:
@<GlobalVarName> = [Linkage] [Visibility] [DLLStorageClass]
[ThreadLocal] ...
Cheers.
Tim.
2016 May 25
4
Potential ambiguity in the grammar of LLVM IR assembly
Hello everyone,
While developing a parser for LLVM IR, I seem to have stumbled upon a
potential ambiguity in the LLVM IR assembly language grammar. Most
likely there is something which I may have overlooked, so wanted to
reach out to a more experienced crowed for some feedback.
How would the following set of tokens be interpreted [1]?
declare
void
@foo()
unnamed_addr
global
i32
42
As far as