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
Suppose we have something like this in a Fortran source file:
use an_external_mod, only: a_subroutine
where an_external_mod is not part of the source tree. Normally, we'll just do:
build.prop{no-dep.f.module} = an_external_mod
However, fcm make will have no idea if an_external_mod has been modified in an incremental build or not. If the location of an_external_mod.mod and an_external_mod.o can be provided, it should be possible for the build system to determine if it needs to re-compile and/or re-link any dependent object files and executables.
The text was updated successfully, but these errors were encountered:
Suppose we have something like this in a Fortran source file:
where
an_external_mod
is not part of the source tree. Normally, we'll just do:However,
fcm make
will have no idea ifan_external_mod
has been modified in an incremental build or not. If the location ofan_external_mod.mod
andan_external_mod.o
can be provided, it should be possible for the build system to determine if it needs to re-compile and/or re-link any dependent object files and executables.The text was updated successfully, but these errors were encountered: