Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add BYN_ENABLE_ASSERTSION option to allow assertions to be disabled. (#2500) | Sam Clegg | 2019-12-04 | 1 | -2/+8 |
| | | | | | | | | We always enable assertions by default, but this options allows for a build without them. Fix all errors in the ASSERTIONS=OFF build, even though we don't normally build this its good to keep it building. | ||||
* | Add BYN_DEBUG/BYN_TRACE macros similar to LLVM's debug system (#2496) | Sam Clegg | 2019-12-04 | 1 | -0/+61 |
This allows for debug trace message to be split my channel. So you can pass `--debug` to simply debug everything, or `--debug=opt` to only debug wasm-opt. This change is the initial introduction but as a followup I hope to convert all tracing over to this new system so we can more easily control the debug output. |