You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
program FortDependPrecompiledProg
use ISO_FORTRAN_ENV
end program FortDependPrecompiledProg
produces this behavior:
/tis/releases/daniel.kahn/python-science/0.0.9/bin/fortdepend -f ~/TestFortran/TestFortDependProg.f90 -o TestDepend -w
Error module ISO_FORTRAN_ENV not defined in any files. Creating empty
Error module ISO_FORTRAN_ENV not defined in any files. Skipping...
Error module ISO_FORTRAN_ENV not defined in any files. Skipping...
Traceback (most recent call last):
File "/tis/releases/daniel.kahn/python-science/0.0.9/bin/fortdepend", line 8, in <module>
sys.exit(main())
File "/tis/releases/daniel.kahn/python-science/0.0.9/lib/python3.8/site-packages/fortdepend/__main__.py", line 78, in main
project.write_depends(filename=output, overwrite=args.overwrite, build=build,
File "/tis/releases/daniel.kahn/python-science/0.0.9/lib/python3.8/site-packages/fortdepend/fort_depend.py", line 283, in write_depends
program_deps = self.get_all_used_files(program)
File "/tis/releases/daniel.kahn/python-science/0.0.9/lib/python3.8/site-packages/fortdepend/fort_depend.py", line 206, in get_all_used_files
used_files = [self.modules[module].source_file.filename for module in used_modules]
File "/tis/releases/daniel.kahn/python-science/0.0.9/lib/python3.8/site-packages/fortdepend/fort_depend.py", line 206, in <listcomp>
used_files = [self.modules[module].source_file.filename for module in used_modules]
KeyError: 'ISO_FORTRAN_ENV'
Listing the offending module names after -i suppresses the errors and the crash, but I don't think it should crash without -i.
The text was updated successfully, but these errors were encountered:
This program:
produces this behavior:
Listing the offending module names after -i suppresses the errors and the crash, but I don't think it should crash without -i.
The text was updated successfully, but these errors were encountered: