compiles on both Windows and Linux#24
Open
Foadsf wants to merge 13 commits into
Open
Conversation
with both Intel's ifrot and GNU's GFortran
``` The use of 64-bit integers can be specified by -i64 in the cft77 command, INTEGER=64 in the CFT77 control statement, or CDIR$ INTEGER=64 in your program. ``` so I wrapped the lines including the Cray compiler directive (`CDIR$`) like: ```fortran !DEC$ IF DEFINED(CRAY_COMPILER) CDIR$ <...> !DEC$ ENDIF ``` and instructed `ifort.exe` with `/integer-size=64` this partly solves issue #1 [here](#1)
added some info to README.md fixes a bunch of fortran issues including #2 and others yet to be opened on GitHub for example [this one](https://community.hpe.com/t5/operating-system-hp-ux/directive-cdir-integer-64/m-p/7213307/highlight/true#M948824)
…n on Linux Ubuntu WSL switched to Ninja for faster build fixes issue #2 and more
Fixed wrong BOZ usage Fixed link usage to linkup and removed wrong external Fixed etime usage and removed wrong external Added compilerflag to allow carriagcontrol Modified scratch array initialization to match the datatype. Initialization with 0, before string -> most likely resutled in garbage (behavior unknown)
Fixed compile and linking problems:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
now compiles on both Windows and Linux