Richard Zak

Results 81 comments of Richard Zak

I think the env variable is `CC_wasm32_wasi`, where I set it to `/opt/wasi-sdk/bin/clang` which worked for me when trying to figure this out.

When I was trying to work on Wasi support, I noticed that it would fail initially, and have output about some flags not being defined: CC_wasm32_wasi, CFLAGS_wasm32_wasi, etc. So when...

I'm getting this error even with `WASI_SDK_DIR` set: ``` include/ring-core/check.h:27:11: fatal error: 'assert.h' file not found # include ^~~~~~~~~~ 1 error generated. ```

> @rjzak does this file exist for you? > > ```shell > ls $WASI_SDK_DIR/include/assert.h > ``` It's here: `/opt/wasi-sdk/share/wasi-sysroot/include/assert.h` Using `/opt/wasi-sdk/bin/clang` should be able to figure it out, I think.

> > When I was trying to work on Wasi support, I noticed that it would fail initially, and have output about some flags not being defined: CC_wasm32_wasi, CFLAGS_wasm32_wasi, etc....

Neat, that's awesome. I wasn't sure what was going on or how to remove the assembly code. What's the command you used to get this code to compile?

Wow, you've made my day. Thank you! https://chat.enarx.dev/channel/development?msg=GX9t75YvQDvMPRHib

I was able to get a project using Ring to compile for `wasm32-wasi`, but I get this error: > Error: unknown import: `env::ring_core_0_17_0_not_released_yet_p256_point_mul_base` has not been defined. @ruslan-belinskyy I was...

It's an issue for `LogisticRegression`. ``` type LogisticRegression struct { param *Parameter model *Model } ``` The function to save the model is: `func Export(model *Model, filePath string) error`. However,...

Two years later, I'm getting the same issue.