Using "gfortran-4.8" I want to create and subsequently use a binary file! According to the information I have seen the format specifications "UNFORMATED" and "BINARY" should both be available, the exact difference between these alternatives not being clear to me. But both these alternatives are unknown to the compiler:
mats@linux-ze70:~/WDB> c try
try.f:1.72:
OPEN(9,FILE='shoreline',ACCESS='SEQUENTIAL',FORM='UNFORMATED')
1
Error: FORM specifier in OPEN statement at (1) has invalid value 'UNFORMATED'
mats@linux-ze70:~/WDB> c try
try.f:1.72:
OPEN(9,FILE='shoreline',ACCESS='SEQUENTIAL',FORM='BINARY')
1
Error: FORM specifier in OPEN statement at (1) has invalid value 'BINARY'
Sure, because of large storage devices the binary files are less often used as before! But this option should still be available!
How to proceed?
mats@linux-ze70:~/WDB> c try
try.f:1.72:
OPEN(9,FILE='shoreline',ACCESS='SEQUENTIAL',FORM='UNFORMATED')
1
Error: FORM specifier in OPEN statement at (1) has invalid value 'UNFORMATED'
mats@linux-ze70:~/WDB> c try
try.f:1.72:
OPEN(9,FILE='shoreline',ACCESS='SEQUENTIAL',FORM='BINARY')
1
Error: FORM specifier in OPEN statement at (1) has invalid value 'BINARY'
Sure, because of large storage devices the binary files are less often used as before! But this option should still be available!
How to proceed?