b***y 发帖数: 2799 | 1 ☆─────────────────────────────────────☆
risun (CD快乐之源) 于 (Wed Sep 21 01:54:18 2005) 提到:
程序中有
write(0,*) trim(string)
结果编译的时候不通过,
Reference to unimplemented intrinsic `TRIM' at (^) (assumed EXTERNAL)
/tmp/cckYUV5O.o(.text+0xb4): In function `MAIN__':
collect2: ld returned 1 exit status
申明了
external trim
还是不行,请问如何解决这个问题?
太弱了,//shy
☆─────────────────────────────────────☆
catapult (Stone Thrower) 于 (Wed Sep 21 11:10:51 2005) 提到:
check if trim is defined outside of any funct | O******e 发帖数: 734 | 2 The error message said it: "Reference to unimplemented intrinsic 'TRIM' at .
. ."
The compiler recognizes "TRIM" as the name of an intrinsic function, but the
TRIM function was not defined in the compiler's run-time library, or the
Fortran run-time library containing TRIM is not being linked. Either a
problem with the installation, or the compiler is not standard compliant.
【在 b***y 的大作中提到】 : ☆─────────────────────────────────────☆ : risun (CD快乐之源) 于 (Wed Sep 21 01:54:18 2005) 提到: : 程序中有 : write(0,*) trim(string) : 结果编译的时候不通过, : Reference to unimplemented intrinsic `TRIM' at (^) (assumed EXTERNAL) : /tmp/cckYUV5O.o(.text+0xb4): In function `MAIN__': : collect2: ld returned 1 exit status : 申明了 : external trim
|
|