Re: [go-nuts] gollvm: Interpret llvm-goc LLVM-IR with lli

2020-02-04 Thread arssh70
Thank very much for your response and clarifying this issue On Tuesday, February 4, 2020 at 12:48:24 PM UTC-5, Than McIntosh wrote: > > >>in this case is Only GOLLVM does not allow to go direct to .ll or it is > general issue > > It's a general issue. Hypothetically if someone were to write anot

Re: [go-nuts] gollvm: Interpret llvm-goc LLVM-IR with lli

2020-02-04 Thread 'Than McIntosh' via golang-nuts
>>in this case is Only GOLLVM does not allow to go direct to .ll or it is general issue It's a general issue. Hypothetically if someone were to write another LLVM-IR-producing Go compiler (not gollvm), you would no doubt have the same problem. Than On Tue, Feb 4, 2020 at 9:55 AM wrote: > in t

Re: [go-nuts] gollvm: Interpret llvm-goc LLVM-IR with lli

2020-02-04 Thread alshamar
in this case is Only GOLLVM does not allow to go direct to .ll or it is general issue. on the other hand, Is any way or tools that compile/interpret/convert from GO to .LL best wishes On Tuesday, February 4, 2020 at 8:59:14 AM UTC-5, Than McIntosh wrote: > > Hello, > > You wrote: > >> .. . res

Re: [go-nuts] gollvm: Interpret llvm-goc LLVM-IR with lli

2020-02-04 Thread 'Than McIntosh' via golang-nuts
Hello, You wrote: >> .. . result that I get can not exec the .ll file by lli command Go programs depend on the Go runtime and standard library -- you can't really do anything interesting in Go without involving these packages. Consider a toy program like this: https://play.golang.org/p/MAohLsrz7