fort77 isn't workingFails to boot after upgrade, stuck on winbind packagegfortran in ubuntu 12.10How can I get my icons, wallpapers and network-manager back on XUBUNTU 14.04 after accidentally upgrading?`apt dist-upgrade` doesn't care about removing upstart and wants to install sysvinit… why?Touchpad isn't working on 18.04Lock screen is weirdly broken on Ubuntu 18.04 / WaylandKernel panic at boot and many programs segfault / core dumpUbuntu login not working. Only UnityLogin loop, Ubuntu 18.04 (with logs)Use OpenGL on the nvidia card instead of the Intel integrated one
Why is delta-v is the most useful quantity for planning space travel?
Is there a good way to store credentials outside of a password manager?
How was Earth single-handedly capable of creating 3 of the 4 gods of chaos?
Can I Retrieve Email Addresses from BCC?
The baby cries all morning
What defines a dissertation?
Failed to fetch jessie backports repository
Trouble understanding overseas colleagues
How do I define a right arrow with bar in LaTeX?
Confused about a passage in Harry Potter y la piedra filosofal
Can a monster with multiattack use this ability if they are missing a limb?
Efficiently merge handle parallel feature branches in SFDX
Why did Kant, Hegel, and Adorno leave some words and phrases in the Greek alphabet?
Do there exist finite commutative rings with identity that are not Bézout rings?
How does it work when somebody invests in my business?
What would happen if the UK refused to take part in EU Parliamentary elections?
Is this Spell Mimic feat balanced?
At which point does a character regain all their Hit Dice?
Products and sum of cubes in Fibonacci
How do I rename a LINUX host without needing to reboot for the rename to take effect?
Ways to speed up user implemented RK4
Is there any easy technique written in Bhagavad GITA to control lust?
Can somebody explain Brexit in a few child-proof sentences?
Is HostGator storing my password in plaintext?
fort77 isn't working
Fails to boot after upgrade, stuck on winbind packagegfortran in ubuntu 12.10How can I get my icons, wallpapers and network-manager back on XUBUNTU 14.04 after accidentally upgrading?`apt dist-upgrade` doesn't care about removing upstart and wants to install sysvinit… why?Touchpad isn't working on 18.04Lock screen is weirdly broken on Ubuntu 18.04 / WaylandKernel panic at boot and many programs segfault / core dumpUbuntu login not working. Only UnityLogin loop, Ubuntu 18.04 (with logs)Use OpenGL on the nvidia card instead of the Intel integrated one
I let my system run an upgrade last night (yes I know I probably shouldn't have) and this morning all my Fortran programs compiled with fort77 won't work. I seem to be able to compile programs (output shows that the main and all subroutines compiled) but when I try to run them, nothing (no error message, literally nothing on the command line).
gfortran works but the problem is: ALL my programs were compiled with fort77 and I don't want to recompile everything. Plus, at least one of my programs has a problem with gfortran (hence why I use fort77).
Can anyone please help? I tried removing and reinstalling fort77 with apt-get
and it made no difference. I'm now running Ubuntu 18.04.1 LTS (64 bit).
upgrade 18.04 fortran
add a comment |
I let my system run an upgrade last night (yes I know I probably shouldn't have) and this morning all my Fortran programs compiled with fort77 won't work. I seem to be able to compile programs (output shows that the main and all subroutines compiled) but when I try to run them, nothing (no error message, literally nothing on the command line).
gfortran works but the problem is: ALL my programs were compiled with fort77 and I don't want to recompile everything. Plus, at least one of my programs has a problem with gfortran (hence why I use fort77).
Can anyone please help? I tried removing and reinstalling fort77 with apt-get
and it made no difference. I'm now running Ubuntu 18.04.1 LTS (64 bit).
upgrade 18.04 fortran
1
Missing a dynamic library?ldd
on one of your programs.
– waltinator
Sep 11 '18 at 0:34
Doesn't look like it, Output of ldd on a basic program: alough@Work-Hound:~/scripts$ ldd delazj linux-vdso.so.1 (0x00007fff3e9d9000) libf2c.so.2 => /usr/lib/x86_64-linux-gnu/libf2c.so.2 (0x00007f51c9c07000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f51c9869000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f51c9478000) /lib64/ld-linux-x86-64.so.2 (0x00007f51ca026000) alough@Work-Hound:~/scripts$
– alough
Sep 12 '18 at 17:25
When I try to run the program and I get nothing, no error, no output, just a return to the prompt. I wrote a basic "hello" program and same thing.
– alough
Sep 12 '18 at 17:28
Get an excruciating level of detail on your program's (non)execution withstrace <programname>
, Readman strace
.
– waltinator
Sep 12 '18 at 17:34
fort77 works on my Ubuntu 18.04. Try running this example code and comment about the results. The linked code is formatted as markdown text which you can read in a markdown text editor or temporarily type in an Ask Ubuntu question or answer window to read it, but don't save the text.
– karel
Sep 28 '18 at 11:46
add a comment |
I let my system run an upgrade last night (yes I know I probably shouldn't have) and this morning all my Fortran programs compiled with fort77 won't work. I seem to be able to compile programs (output shows that the main and all subroutines compiled) but when I try to run them, nothing (no error message, literally nothing on the command line).
gfortran works but the problem is: ALL my programs were compiled with fort77 and I don't want to recompile everything. Plus, at least one of my programs has a problem with gfortran (hence why I use fort77).
Can anyone please help? I tried removing and reinstalling fort77 with apt-get
and it made no difference. I'm now running Ubuntu 18.04.1 LTS (64 bit).
upgrade 18.04 fortran
I let my system run an upgrade last night (yes I know I probably shouldn't have) and this morning all my Fortran programs compiled with fort77 won't work. I seem to be able to compile programs (output shows that the main and all subroutines compiled) but when I try to run them, nothing (no error message, literally nothing on the command line).
gfortran works but the problem is: ALL my programs were compiled with fort77 and I don't want to recompile everything. Plus, at least one of my programs has a problem with gfortran (hence why I use fort77).
Can anyone please help? I tried removing and reinstalling fort77 with apt-get
and it made no difference. I'm now running Ubuntu 18.04.1 LTS (64 bit).
upgrade 18.04 fortran
upgrade 18.04 fortran
edited Sep 28 '18 at 11:38
abu_bua
4,06181530
4,06181530
asked Sep 10 '18 at 19:57
aloughalough
1
1
1
Missing a dynamic library?ldd
on one of your programs.
– waltinator
Sep 11 '18 at 0:34
Doesn't look like it, Output of ldd on a basic program: alough@Work-Hound:~/scripts$ ldd delazj linux-vdso.so.1 (0x00007fff3e9d9000) libf2c.so.2 => /usr/lib/x86_64-linux-gnu/libf2c.so.2 (0x00007f51c9c07000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f51c9869000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f51c9478000) /lib64/ld-linux-x86-64.so.2 (0x00007f51ca026000) alough@Work-Hound:~/scripts$
– alough
Sep 12 '18 at 17:25
When I try to run the program and I get nothing, no error, no output, just a return to the prompt. I wrote a basic "hello" program and same thing.
– alough
Sep 12 '18 at 17:28
Get an excruciating level of detail on your program's (non)execution withstrace <programname>
, Readman strace
.
– waltinator
Sep 12 '18 at 17:34
fort77 works on my Ubuntu 18.04. Try running this example code and comment about the results. The linked code is formatted as markdown text which you can read in a markdown text editor or temporarily type in an Ask Ubuntu question or answer window to read it, but don't save the text.
– karel
Sep 28 '18 at 11:46
add a comment |
1
Missing a dynamic library?ldd
on one of your programs.
– waltinator
Sep 11 '18 at 0:34
Doesn't look like it, Output of ldd on a basic program: alough@Work-Hound:~/scripts$ ldd delazj linux-vdso.so.1 (0x00007fff3e9d9000) libf2c.so.2 => /usr/lib/x86_64-linux-gnu/libf2c.so.2 (0x00007f51c9c07000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f51c9869000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f51c9478000) /lib64/ld-linux-x86-64.so.2 (0x00007f51ca026000) alough@Work-Hound:~/scripts$
– alough
Sep 12 '18 at 17:25
When I try to run the program and I get nothing, no error, no output, just a return to the prompt. I wrote a basic "hello" program and same thing.
– alough
Sep 12 '18 at 17:28
Get an excruciating level of detail on your program's (non)execution withstrace <programname>
, Readman strace
.
– waltinator
Sep 12 '18 at 17:34
fort77 works on my Ubuntu 18.04. Try running this example code and comment about the results. The linked code is formatted as markdown text which you can read in a markdown text editor or temporarily type in an Ask Ubuntu question or answer window to read it, but don't save the text.
– karel
Sep 28 '18 at 11:46
1
1
Missing a dynamic library?
ldd
on one of your programs.– waltinator
Sep 11 '18 at 0:34
Missing a dynamic library?
ldd
on one of your programs.– waltinator
Sep 11 '18 at 0:34
Doesn't look like it, Output of ldd on a basic program: alough@Work-Hound:~/scripts$ ldd delazj linux-vdso.so.1 (0x00007fff3e9d9000) libf2c.so.2 => /usr/lib/x86_64-linux-gnu/libf2c.so.2 (0x00007f51c9c07000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f51c9869000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f51c9478000) /lib64/ld-linux-x86-64.so.2 (0x00007f51ca026000) alough@Work-Hound:~/scripts$
– alough
Sep 12 '18 at 17:25
Doesn't look like it, Output of ldd on a basic program: alough@Work-Hound:~/scripts$ ldd delazj linux-vdso.so.1 (0x00007fff3e9d9000) libf2c.so.2 => /usr/lib/x86_64-linux-gnu/libf2c.so.2 (0x00007f51c9c07000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f51c9869000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f51c9478000) /lib64/ld-linux-x86-64.so.2 (0x00007f51ca026000) alough@Work-Hound:~/scripts$
– alough
Sep 12 '18 at 17:25
When I try to run the program and I get nothing, no error, no output, just a return to the prompt. I wrote a basic "hello" program and same thing.
– alough
Sep 12 '18 at 17:28
When I try to run the program and I get nothing, no error, no output, just a return to the prompt. I wrote a basic "hello" program and same thing.
– alough
Sep 12 '18 at 17:28
Get an excruciating level of detail on your program's (non)execution with
strace <programname>
, Read man strace
.– waltinator
Sep 12 '18 at 17:34
Get an excruciating level of detail on your program's (non)execution with
strace <programname>
, Read man strace
.– waltinator
Sep 12 '18 at 17:34
fort77 works on my Ubuntu 18.04. Try running this example code and comment about the results. The linked code is formatted as markdown text which you can read in a markdown text editor or temporarily type in an Ask Ubuntu question or answer window to read it, but don't save the text.
– karel
Sep 28 '18 at 11:46
fort77 works on my Ubuntu 18.04. Try running this example code and comment about the results. The linked code is formatted as markdown text which you can read in a markdown text editor or temporarily type in an Ask Ubuntu question or answer window to read it, but don't save the text.
– karel
Sep 28 '18 at 11:46
add a comment |
1 Answer
1
active
oldest
votes
I hit the same bug.
Filed in the ubuntu bts as bug # 1821845
https://bugs.launchpad.net/ubuntu/+source/fort77/+bug/1821845
Hamish
New contributor
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1074077%2ffort77-isnt-working%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I hit the same bug.
Filed in the ubuntu bts as bug # 1821845
https://bugs.launchpad.net/ubuntu/+source/fort77/+bug/1821845
Hamish
New contributor
add a comment |
I hit the same bug.
Filed in the ubuntu bts as bug # 1821845
https://bugs.launchpad.net/ubuntu/+source/fort77/+bug/1821845
Hamish
New contributor
add a comment |
I hit the same bug.
Filed in the ubuntu bts as bug # 1821845
https://bugs.launchpad.net/ubuntu/+source/fort77/+bug/1821845
Hamish
New contributor
I hit the same bug.
Filed in the ubuntu bts as bug # 1821845
https://bugs.launchpad.net/ubuntu/+source/fort77/+bug/1821845
Hamish
New contributor
New contributor
answered 47 mins ago
hamishhamish
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1074077%2ffort77-isnt-working%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Missing a dynamic library?
ldd
on one of your programs.– waltinator
Sep 11 '18 at 0:34
Doesn't look like it, Output of ldd on a basic program: alough@Work-Hound:~/scripts$ ldd delazj linux-vdso.so.1 (0x00007fff3e9d9000) libf2c.so.2 => /usr/lib/x86_64-linux-gnu/libf2c.so.2 (0x00007f51c9c07000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f51c9869000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f51c9478000) /lib64/ld-linux-x86-64.so.2 (0x00007f51ca026000) alough@Work-Hound:~/scripts$
– alough
Sep 12 '18 at 17:25
When I try to run the program and I get nothing, no error, no output, just a return to the prompt. I wrote a basic "hello" program and same thing.
– alough
Sep 12 '18 at 17:28
Get an excruciating level of detail on your program's (non)execution with
strace <programname>
, Readman strace
.– waltinator
Sep 12 '18 at 17:34
fort77 works on my Ubuntu 18.04. Try running this example code and comment about the results. The linked code is formatted as markdown text which you can read in a markdown text editor or temporarily type in an Ask Ubuntu question or answer window to read it, but don't save the text.
– karel
Sep 28 '18 at 11:46