You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the p384 crate compiling we are getting 'signal: 11, SIGSEGV: invalid memory reference' error. This issue is occurring on 32-bit architecture machines when doing DEBUG build.
Also, this issue is observed only when building this in Yocto. In rust tarball sources we couldn't reproduce the issue.
We've tried to fix the issue and below 2 ways are fixing the linking problem for this crate but it has some side effects on rest of the build.
From build command when the '-C debuginfo=2' option removed the linking is success for this package. (But the other crates are getting failed by some other errors referring the functions from this crate are not found in the scope. May be disabling the debug causing some missing info?)
By keeping '-C debuginfo=2' and by removing the features 'arithmetic, ecdh, ecdsa & ecdsa-core' also making the package to link successfully. (Is there any way I can tell cargo to remove these features from this package and it's depending packages alone?)
Is this the issue in p384 when using debug / with these features?
The text was updated successfully, but these errors were encountered:
When the
p384
crate compiling we are getting 'signal: 11, SIGSEGV: invalid memory reference' error. This issue is occurring on 32-bit architecture machines when doing DEBUG build.Also, this issue is observed only when building this in Yocto. In rust tarball sources we couldn't reproduce the issue.
Below is the build command and error message.
We've tried to fix the issue and below 2 ways are fixing the linking problem for this crate but it has some side effects on rest of the build.
Is this the issue in
p384
when using debug / with these features?The text was updated successfully, but these errors were encountered: