Author |
Message |
Topic: C++ Link |
wahorger
Replies: 2
Views: 346
|
Forum: 64-bit Posted: Mon Oct 28, 2024 11:10 pm Subject: |
I've done quite a bit of mixed-mode using FTN95. I'm not sure what you are referring to as "C++ output module".
Do you mean that all output from FTN95 program units uses the C++ pre-defin ... |
Topic: Edit Cells (%lv) |
wahorger
Replies: 3
Views: 3011
|
Forum: ClearWin+ Posted: Tue Oct 08, 2024 9:36 pm Subject: |
Thanks, Paul! |
Topic: Oddities since latest release |
wahorger
Replies: 3
Views: 2053
|
Forum: General Posted: Sat Sep 07, 2024 2:43 pm Subject: |
Thanks, Paul! The Plato HELP file is more of an annoyance than anything.
The McAfee issue: I'll report it and see if they can tell me the why behind it taking so dang long, and why. |
Topic: Oddities since latest release |
wahorger
Replies: 3
Views: 2053
|
Forum: General Posted: Sat Sep 07, 2024 5:30 am Subject: Oddities since latest release |
I've had the following odd things happen. V9.04.00
First: In Plato, when I need help, I am asked whether I wish to open the HELP file. Every time. New behavior, absolutely, after the latest release ... |
Topic: Edit Cells (%lv) |
wahorger
Replies: 3
Views: 3011
|
Forum: ClearWin+ Posted: Sun Aug 18, 2024 1:24 pm Subject: Edit Cells (%lv) |
The attachment of data to a %lv using the %ud format code is inconsistent when user_data. However, when the 'END_EDIT' of "KEY_DOWN' reason is invoked, the user_data is no longer valid (i.e. zero ... |
Topic: Failure at run-time with format F when using real KIND=3 |
wahorger
Replies: 12
Views: 5000
|
Forum: Support Posted: Wed Aug 07, 2024 4:07 pm Subject: |
No worries! That's what this forum is for, helping others! |
Topic: Failure at run-time with format F when using real KIND=3 |
wahorger
Replies: 12
Views: 5000
|
Forum: Support Posted: Mon Aug 05, 2024 6:25 pm Subject: |
FWIW: Fortran 9.02.00 |
Topic: Failure at run-time with format F when using real KIND=3 |
wahorger
Replies: 12
Views: 5000
|
Forum: Support Posted: Mon Aug 05, 2024 5:47 pm Subject: |
This should work. This causes an error in both Checkmate and Release.
PROGRAM RUNGE
IMPLICIT NONE
INTEGER :: I, N
integer (KIND=4):: k=0
integer ... |
Topic: Failure at run-time with format F when using real KIND=3 |
wahorger
Replies: 12
Views: 5000
|
Forum: Support Posted: Fri Aug 02, 2024 6:55 pm Subject: |
No error if you use dble(i)/dble(n).
However, the value displayed for the floating point value is still all ******'s.
The hexadecimal of this is interesting as a repeating pattern:
C28F5C28F5 ... |
Topic: 64 bit dll |
wahorger
Replies: 6
Views: 4355
|
Forum: 64-bit Posted: Fri Jul 05, 2024 12:15 pm Subject: |
The F_STDCALL is unnecessary for 64-bit. It might be superfluous for 32-bit. I did nothing to my FTN sources to get a 64-bit DLL created. |
Topic: Linking order of object files |
wahorger
Replies: 10
Views: 6485
|
Forum: Support Posted: Wed Mar 20, 2024 2:08 pm Subject: |
John, I did precisely this, and was left with an unresolved reference. The reason being that my main (and a subroutine referenced by a library function) were compiled together in one object file (for ... |
Topic: Linking order of object files |
wahorger
Replies: 10
Views: 6485
|
Forum: Support Posted: Wed Mar 20, 2024 5:15 am Subject: |
John, I think you misread.
FILE_A contains MAIN and SUB_A. They get compile into OBJ_A
FILE_B contains SUB_B. It compiles into OBJ_B. This becomes a library.. SUB_B contains a reference to SUB_A ... |
Topic: Linking order of object files |
wahorger
Replies: 10
Views: 6485
|
Forum: Support Posted: Tue Mar 19, 2024 3:46 pm Subject: |
I just had a hint about objects versus libraries.
File A contains MAIN and SUB_A, in OBJ_A
File B contains SUB_B, in OBJ_B.
SUB_B calls SUB_A. OBJ_B is in a library.
OBJ_A, because it conta ... |
Topic: Linking order of object files |
wahorger
Replies: 10
Views: 6485
|
Forum: Support Posted: Sat Mar 16, 2024 9:31 pm Subject: |
Are you building a library with Gfortran, or just putting objects?
If the former, then you might be able to put the same library in twice, catching the cyclic dependencies.
SLINK (and SLIM) seem ... |
Topic: Linking order of object files |
wahorger
Replies: 10
Views: 6485
|
Forum: Support Posted: Sat Mar 16, 2024 8:34 pm Subject: |
This is my experience.
If you simply LOAD multiple objects (.OBJ files), then dependency matters; that is, if you don't express them in order, then they will not resolve references, and you're left ... |
|