dwrensha / seer

symbolic execution engine for Rust
Other
345 stars 7 forks source link

fix cargo seer no-trans error #11

Closed ghost closed 6 years ago

ghost commented 6 years ago

When I try to use cargo seer on examples/base64, it fails with message

error: unknown debugging option: `no-trans`

MIRI has recently replaced its use of the -Zno-trans arg with --emit=dep-info,metadata in https://github.com/solson/miri/commit/675587280f5cee0ea99ebb4c4f70043e89aa1aed. This PR does the same for Seer, making the example work again.

dwrensha commented 6 years ago

Thanks!