Fix broken link on Elbrus Fortran compiler

Error is raised due to Elbrus Fortran compiler can't
generate debug information for now, because it's a 2-step
compiler where 1st step is code conversion from Fortran to C,
so debug information which C compiler would produce, is useless.
pull/6455/head
makise-homura 5 years ago
parent 7ca53e40a3
commit 6300007396
  1. 4
      run_unittests.py

@ -3087,7 +3087,9 @@ int main(int argc, char **argv) {
pass
try:
env.detect_fortran_compiler(MachineChoice.HOST)
langs.append('fortran')
if is_windows() or platform.machine().lower() != 'e2k':
# Elbrus Fortran compiler can't generate debug information
langs.append('fortran')
except EnvironmentException:
pass
try:

Loading…
Cancel
Save