Nv7

Results 103 comments of Nv7

I was able to get it to work with https://github.com/Nv7-GitHub/go-llvm and ```brew install llvm@9``` The binary size is 57MB....

Kind of... Here is what it is linked to: ``` /usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.11) /usr/lib/libncurses.5.4.dylib (compatibility version 5.4.0, current version 5.4.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version...

I don't think it can build static binaries though, just create LLVM IR/bitcode and JIT compile and run it

There's also [tinygo](https://tinygo.org) which creates LLVM from Go code, and is compatible with most of Go.

Is there a `di` package? I'm looking to add debug info to my language, but am not sure how. The DI API is really confusing, and I'm not sure on...

I want the opposite - I want to be able to disable the type-checking, and have it assume that I did it correctly in certain parts. Is this possible?

So basically, I have a bunch of statements in a function. I don't know the return type of the function, but by going through the statements, I can figure out...

Right now the function panicking is Store, but it could be any, store is just the first one called I like that it tells me when something is wrong, most...

I was able to find a workaround for this issue by just calculating the type before, so I have resolved my side of the issue.

No, I didn't find a solution, hoping someone does