我编写了一个简单的测试程序来演示我在编译一些 Fortran 代码时收到的数据声明错误。编译错误发生在我试图创建任意大小的数组的行上。在 C 代码中,我相信这可以通过简单malloc
的 .
这里出了什么问题,我该如何解决?我在 上使用gfortran
编译器GNU/Linux
,所以我认为可以使用所有受支持的语言功能。
这是我的测试程序:
program test
implicit none
integer num1, num2
print *, 'Starting...'
num1 = 10
num2 = 11
call sub(num1, num2)
print *, 'Done.'
end program
subroutine sub(num1, num2)
integer num1, num2
integer num3
num3 = num1 + num2 - 1
integer A(num3)
do i = 1,num3
A(i) = i
end do
print *, 'Now printing out vector'
do i = 1,num3
print *, A(i)
end do
end subroutine
这是cmake
用于编译我的简单测试程序的脚本:
cmake_minimum_required (VERSION 2.6)
project (test Fortran)
add_executable( test
test.f90
) # end
编译此程序时,我收到以下错误:
/media/RESEARCH/SAS2-version2/test-Q-filter/test-Fcreation/test.f90:20.16:
integer A(num3)
1
Error: Unexpected data declaration statement at (1)
/media/RESEARCH/SAS2-version2/test-Q-filter/test-Fcreation/test.f90:23.10:
A(i) = i
1
Error: Unexpected STATEMENT FUNCTION statement at (1)
make[2]: *** [CMakeFiles/test.dir/test.f90.o] Error 1
make[1]: *** [CMakeFiles/test.dir/all] Error 2
make: *** [all] Error 2