<p>Waited an hour for compiling llvm-go to find out that llgo is what I needed to make llvm bc with llgo. Went to compile logo and found the instructions are suboptimal. </p>
<p>Any one know of and distro I can just get it on in a package? I'm just going to have to setup a build environment in docker. </p>
<p>Ultimately I'm trying to just expose an API in JavaScript that includes some CGO imports. I really don't want to maintain multiple code bases if I can avoid it. </p>
<p>Side note: I did see an existing docker image, but it's already dated. Looking to be in the lastest and greatest.</p>
<hr/>**评论:**<br/><br/>dlsniper: <pre><blockquote>
<p>Ultimately I'm trying to just expose an API in JavaScript that includes some CGO imports.</p>
</blockquote>
<p>Why do you need llgo and not use the Go toolchain for that?</p>
<p>Also afaik llgo is not yet a blessed implementation and by the work it goes into it it looks like it still has a few legs to go before that (I might be wrong).</p></pre>igknighted: <pre><p>I want to evaluate the feasibility of using a webassembly port that I compile with llgo -> emscripten. </p>
<p>While it may not be blessed, I don't really think many people are even bothering with it. Personally reading over it, I believe the llgo impementation may be enough to bridge cryptography API implementations and am just aiming to test it out before making a decision to write multiple code bases. </p>
<p>I'm working on an open source project that I am aiming to provide wide support for, but I'm only one guy. Being able to manage 1 code base and maintain high portability is pretty important to me. </p></pre>sbinet: <pre><p>gollvm might be a better horse to bet on than llgo (no disrespect to the llgo devs)
gollvm has a few go googlers working on it...</p></pre>dlsniper: <pre><p>Oh, I see, that wasn't clear from the initial text.</p>
<p>Maybe you can post the instructions / a Dockerfile which is useful to compile llgo and al that's needed for it? </p></pre>igknighted: <pre><p>This is what I was working from: <a href="http://llvm.org/svn/llvm-project/llgo/trunk/README.TXT" rel="nofollow">http://llvm.org/svn/llvm-project/llgo/trunk/README.TXT</a> </p>
<p>When I went to build it I ended up being ultimately stuck on the last cmake. I'm not really familiar with cmake. I'm more of a <code>./configure && make build</code> kinda guy. </p></pre>epiris: <pre><p>Stuck in what way? Build output may give me a hint at a quick glance. What Linux distro you run? I wouldn't compile llvm in a docker container myself, a lot of the defaults are gonna leave you resource starved. I've never looked at or used llgo, but the link shows it as a top lvl prj for llvm so maybe the most recent Jenkins builds will be in the llvm lab. Will give you some hints maybe on any flags / dep version combinations that are known to work harmoniously. Best of luck, though crypto might not be the safest area to play with lol.</p></pre>daenney: <pre><p>Considering the start of the README that states llgo is not feature complete yet I doubt anyone has picked it up and packaged it.</p>
<blockquote>
<p>llgo is under active development. It compiles and passes most of the standard library test suite and a substantial portion of the gc test suite, but there are some corner cases that are known not to be handled correctly yet. Nevertheless it can compile modestly substantial programs (including itself; it is self hosting on x86-64 Linux).</p>
</blockquote>
<p>If you're looking to get Go code to run in WebAssembly though, <a href="https://github.com/go-interpreter/wagon" rel="nofollow">wagon</a> or <a href="https://github.com/tsavola/wag" rel="nofollow">wag</a> might interest you.</p></pre>igknighted: <pre><p>A lot of people have suggested that to other people, but that looks like an interpreter written in go for running llvm byte code. Did I miss something when checking that out? </p></pre>tiborvass: <pre><p>Almost: it is to run interpreted wasm code, not llvm byte code.</p></pre>igknighted: <pre><p>I see. So it's definitely not a solution for the end goal. I really like gopherjs. I just wish things didn't get slower when using encryption algorithms. </p></pre>
这是一个分享于 的资源,其中的信息可能已经有所发展或是发生改变。
入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889
0 回复
- 请尽量让自己的回复能够对别人有帮助
- 支持 Markdown 格式, **粗体**、~~删除线~~、
`单行代码`
- 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
- 图片支持拖拽、截图粘贴等方式上传