Sam Clegg

Results 1123 comments of Sam Clegg

If you don't want to build it from source you can download a prebuilt version of this library from one of the releases. e.g. https://github.com/WebAssembly/wasi-sdk/releases/tag/wasi-sdk-12 Then can most likely just...

Are these differences to be expected @sunfishcode ?

I'm also seeing a failure in the stat.c tests (seems like lstat is failing): ``` --- /dev/null 2020-04-08 17:47:21.816001886 -0700 +++ stat.c.-O0.stderr.observed 2020-05-16 18:42:23.772233121 -0700 @@ -0,0 +1,15 @@ +Assertion...

If you are targeting the web then emscripten is really you best bet today. wasi-sdk it not really designed to target the web, at last not today. emscripten's output can...

Looks like your helloworld.c is missing a `main` function?

Do you know where bb31aec2cc85b6e2e85e687d086f85408b166c42 is coming from? It doesn't look like the src/llvm-project directory was ever pinned to that revision. The following command shows nothing: ``` $ git log...

I'm a little confused, why are you trying to close `llvm-project.git` and not `wask-sdk.git`? BTW that command (`git clone --recurse-submodules https://github.com/llvm/llvm-project.git`) should also work just fine, bit it only clones...

Can you try again with `wasi-sdk.git` and post the full command and the full output. I don't see where `bb31aec2cc85b6e2e85e687d086f85408b166c42` could be coming from. That is not a valid revision...

The problem is that your fork of `src/llvm-project/` points to an non-existent revision. It looks like you changed it here: https://github.com/holzschu/wasi-sdk/commit/28eeff7e2cae4f7b56e1c3b23e15e03ebc7beff3 It would have been useful if you could have...

What runtime are you using to try to run your binary? I looks like that runtime is not providing the necessary imports for the module. Does the runtime claim to...