Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NASM use default debug format (#1747)
### Issues * Addresses: aws/aws-lc-rs#470 ### Description of changes: * NASM object files were previously setup to always contain debug information, including source file paths. * `-gcv8` produces the ["CodeView 8" format](https://www.nasm.us/doc/nasmdoc8.html#section-8.5.3). * Simply using `-g` will produce the [default debug format](https://www.nasm.us/doc/nasmdoc2.html#section-2.1.14) for the target. * For "release" and "minsizerel" builds, inclusion of debug information is not desirable. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license. --------- Co-authored-by: dkostic <[email protected]>
- Loading branch information