commit | 2b29bca2a977c45ad75181df7e9e685ddd98329c | [log] [tgz] |
---|---|---|
author | DRC <information@libjpeg-turbo.org> | Wed Dec 07 18:11:38 2016 -0600 |
committer | DRC <information@libjpeg-turbo.org> | Wed Dec 07 18:18:35 2016 -0600 |
tree | fec270ec0d14e12c83dc7346cd19fb651f49205f | |
parent | d681fa76264318a7292477d170889a62580508b1 [diff] |
Build: Fix Debug/RelWithDebInfo build with YASM YASM requires a debug format to be specified with -g. Currently the only combination that I can make work at all is DWARF-2/ELF (YASM doesn't support Mach-O debugging at all, and its support for CV8/MSVC and MinGW/DWARF-2 appears to be broken), so debugging is only enabled automatically for ELF at the moment. For other formats, we don't specify -g at all, which is how the old build system behaved. Fixes #125, Closes #126