I am compiling my code like so
ifort -c -check -g -debug extended -debug-parameters -traceback -u -fp-stack-check -warn -guide -qopt-report=5 phenology_driv.f90 ifort: remark #10397: optimization reports are generated in *.optrpt files in the output location
However after compilation ends the file phenology_driv.optrpt only shows
Intel(R) Advisor can now assist with vectorization and show optimization report messages with your source code. See "https://software.intel.com/en-us/intel-advisor-xe" for details. Intel(R) Fortran Intel(R) 64 Compiler for applications running on Intel(R) 64, Version 18.0.0.104 Build 20170811 Compiler options: -c -check -g -debug extended -debug-parameters -traceback -u -fp-stack-check -warn -guide -qopt-report=5
In the project there are also a couple of C files and despite those being compiled with the same flags they actually contain report details.
Am I doing something wrong?