-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamic linking experiments are stumbled by unconditional "--export-table" #251
Comments
There's a bit of discussion on the original PR, and it seems like if LLD doesn't support both flags then we should remove the argument from rustc and require users to pass in an explicit value. |
Oh, the problem might be deeper, since overriding of stack size doesn't seem to work either. |
I believe the stack size aspect was addressed by rust-lang/rust#57337 |
…alexcrichton Don't export table by default in wasm Revert of rust-lang#53237 As per discussion here rustwasm/team#251
…alexcrichton Don't export table by default in wasm Revert of rust-lang#53237 As per discussion here rustwasm/team#251
Should have been fixed in rust-lang/rust#57861, so closing. |
I've discovered flags like
--pic
/--shared
in the latest LLD (seems to be not yet available in the LLD shipped with rust). But when I try to use them I'm getting this LLD error:I tried to pass
--import-table
to override the rustc passed--export-table
, however, LLD doesn't support that, and fails withDo you have any idea how to proceed here?
The text was updated successfully, but these errors were encountered: