-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linux support #10
Linux support #10
Conversation
I suspect this line is causing problems, in line 2508 gfio.for: OPEN(ILUNEW,ERR=6500,FILE=AFILE,STATUS='OLD') The value here of AFILE is: While the argument in the command line is On Windows, this won't generate a problem because lower/upper case doesn't matter. Interestingly, I can get it run fairly successfully when I copy the file to a new name WELL_UFLOW.DAT. |
Set up a basic test and CI
These are some mostly cosmetic changes to get it compiling on Linux.
I've added a basic test case, which runs on Windows (with the original exe, and the one I've built myself).
Unfortunately, the Linux executable doesn't run properly yet. Adding a print statement tells me that it does run; I can print the command line argument, but it seems to be hanging afterwards.
Easiest is to start a debugger and see where it's going awry. VSCode can connect to gdb running in WSL, with a little bit of setup. I should document this.
I have relatively good hopes that if we get this working for Linux, that it'll probably also work for Mac.