Others

Results 38 comments of Others

I think this error is in place because we never decided on an ABI for table exports. Do you actually want to export your tables? Or just have us not...

Is the idea that you'd then link in another binary that imported that table?

Probably suggests that removing llvm-alt is the path forward for #11

Have you tried setting RUSTFLAGS to disable pie, like: `RUSTFLAGS='-C relocation-model=dynamic-no-pic -C link-args=-no-pie'` I'm not sure if this will work, but it's worth a try.

Okay I literally had to resolve this exact same problem. All I had to do was add `-no-pie` to the `pre-link-args` in my target specification. YMMV.

@japaric Yeah, that's not a great solution for me since my target is so exotic (I compile Rust to run on a [research operating system](https://composite.seas.gwu.edu/).) However it's probably a good...