We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compiling with gfortran 4.8.5 leas to gfortran -c -m32 -g -fno-automatic -fdollar-ok -fno-backslash -finit-local-zero -fno-second-underscore mcdvcsv1.f -o mcdvcsv1.o mcdvcsv1.f:372.47: if (isel_f2qcd.eq.1) F2VAL = dble(sf2test(real(XVAL),real(Q2VAL))) 1 Error: Return type mismatch of function 'sf2test' at (1) (REAL(8)/REAL(4)) make: *** [mcdvcsv1.o] Error 1
Solved with:
real*8 function sf2test(xin,q2in)
in line 5173 of mcdvcsv1.f.
Note, original milou has the same problem
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Compiling with gfortran 4.8.5 leas to
gfortran -c -m32 -g -fno-automatic -fdollar-ok -fno-backslash -finit-local-zero -fno-second-underscore mcdvcsv1.f -o mcdvcsv1.o
mcdvcsv1.f:372.47:
if (isel_f2qcd.eq.1) F2VAL = dble(sf2test(real(XVAL),real(Q2VAL))) 1
Error: Return type mismatch of function 'sf2test' at (1) (REAL(8)/REAL(4))
make: *** [mcdvcsv1.o] Error 1
Solved with:
in line 5173 of mcdvcsv1.f.
Note, original milou has the same problem
The text was updated successfully, but these errors were encountered: