- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Hi everyone,
I am trying to recompile a very old Fortran source code by using Compaq Visual Fortran 6.1A. I think it was compiled with Microsoft PowerFortran before in 16 bits. I am trying to compile it in 32 bits.
In the code, there is an ALLOCATABLE declaration with a "HUGE" parameter. Looks like the following:
integer*1 izel[ALLOCATABLE,HUGE](:)
The CVF gives me the following warning:
"Warning: This attribute is not supported in the DEC$ ATTRIBUTES directive. [HUGE]"
I read somewhere that if the array is larger tyhan 64MB in size, the HUGE paramater is necessary. I know that the size of the array will be larger than 64 MB.
Does anybody have any suggestions regarding this issue? (As well as the 32 bit conversion from 16 bits in general..)
Any help is appreciated.
Regards...
Osman.
I am trying to recompile a very old Fortran source code by using Compaq Visual Fortran 6.1A. I think it was compiled with Microsoft PowerFortran before in 16 bits. I am trying to compile it in 32 bits.
In the code, there is an ALLOCATABLE declaration with a "HUGE" parameter. Looks like the following:
integer*1 izel[ALLOCATABLE,HUGE](:)
The CVF gives me the following warning:
"Warning: This attribute is not supported in the DEC$ ATTRIBUTES directive. [HUGE]"
I read somewhere that if the array is larger tyhan 64MB in size, the HUGE paramater is necessary. I know that the size of the array will be larger than 64 MB.
Does anybody have any suggestions regarding this issue? (As well as the 32 bit conversion from 16 bits in general..)
Any help is appreciated.
Regards...
Osman.
링크가 복사됨
2 응답
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Remove the HUGE - you don't need it with CVF. That was for DOS.
