Darwin: Correct a version check.
When the version for dsymutil comes from a clang build, it is of the form NNmm.pp.qq where NN and mm are the major and minor LLVM version components. We need to check for a major version greater than or equal to 7 - so use 700 in the check. gcc/ChangeLog: * config/darwin.cc (darwin_override_options): Update the clang major version value in the dsymutil check. Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
This commit is contained in:
parent
3c499f8f6f
commit
451bb0b926
1 changed files with 1 additions and 1 deletions
|
@ -3420,7 +3420,7 @@ darwin_override_options (void)
|
|||
/* External toolchains based on LLVM or clang 7+ have support for
|
||||
dwarf-4. */
|
||||
if ((dsymutil_version.kind == LLVM && dsymutil_version.major >= 7)
|
||||
|| (dsymutil_version.kind == CLANG && dsymutil_version.major >= 7))
|
||||
|| (dsymutil_version.kind == CLANG && dsymutil_version.major >= 700))
|
||||
dwarf_version = 4;
|
||||
else if (dsymutil_version.kind == DWARFUTILS
|
||||
&& dsymutil_version.major >= 121)
|
||||
|
|
Loading…
Add table
Reference in a new issue