This fixes the error here: [ 78%] Building Fortran object qmap/libqmap/CMakeFiles/qmap_impl.dir/dot.f90.o /home/dl1/bin/wsjtx-2.7.1/build/wsjtx-prefix/src/wsjtx/qmap/libqmap/decode0.f90:6:28: 6 | real*4 dd(2,NSMAX),ss(400,NFFT),savg(NFFT) | 1 Error: Variable ‘nfft’ cannot appear in the expression at (1) /home/dl1/bin/wsjtx-2.7.1/build/wsjtx-prefix/src/wsjtx/qmap/libqmap/decode0.f90:6:39: 6 | real*4 dd(2,NSMAX),ss(400,NFFT),savg(NFFT) | 1 Error: Variable ‘nfft’ cannot appear in the expression at ...
Fix error from missing parameter in GCC14
If you edit the file decode0.f90 at the top in parameter you just need to add the missing parameter. parameter (NSMAX=60*96000,NFFT=32768) then it should all build. Not sure why in GCC14 it's failing on that now but that's what it is.
If you edit the file decode0.f90 at the top in parameter you just need to add the missing parameter. parameter (NSMAX=60*96000,NFFT=32768) then it should all build. Not sure why in GCC14 it's failing on that now but that's what it is.
@dg2ycb If you edit the file decode0.f90 at the top in parameter you just need to add the missing parameter. parameter (NSMAX=60*96000,NFFT=32768) then it should all build. Not sure why in GCC14 it's failing on that now but that's what it is.