I'm getting this error at GZDoom 3.2.1 startup on Linux Mint 17.3:
/opt/gzdoom/gzdoom: /usr/lib/x86_64-linux-gnu/libgomp.so.1: version `GOMP_4.0' not found (required by /opt/gzdoom/gzdoom)
I guess there are some dependencies missing in the deb package and thus causing this problem on Ubuntu 14.04 based distros.
The libgomp version is 4.8.4-2ubuntu1~14.04.3
[GZDoom 3.2.1] libgomp.so.1: version `GOMP_4.0' not found
Moderators: GZDoom Developers, LZDoom Developers, UZDoom Developers
Forum rules
Please be as descriptive as possible in your posts (list your hardware and operating system, the version of the source port you are using, any mods you are running and how they're being loaded, etc.)
This will help others to give you a solution!
Please be as descriptive as possible in your posts (list your hardware and operating system, the version of the source port you are using, any mods you are running and how they're being loaded, etc.)
This will help others to give you a solution!
-
Rachael
- Posts: 13976
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: [GZDoom 3.2.1] libgomp.so.1: version `GOMP_4.0' not foun
You might want to register an account and send a PM to Blzut3 for this, since he is the one who manages the debian packages.
-
_mental_
-

- Posts: 3820
- Joined: Sun Aug 07, 2011 4:32 am
Re: [GZDoom 3.2.1] libgomp.so.1: version `GOMP_4.0' not foun
We have OpenMP as optional dependency. Apparently Blzut3 wasn’t aware of this.
Installing libgomp1 via package manager should fix the problem.
Installing libgomp1 via package manager should fix the problem.
-
SMT_YHVH
- Posts: 4
- Joined: Sun Nov 19, 2017 12:53 pm
Re: [GZDoom 3.2.1] libgomp.so.1: version `GOMP_4.0' not foun
I've been having the same issue as well. I already have libgomp1 installed, yet it won't start up.
-
_mental_
-

- Posts: 3820
- Joined: Sun Aug 07, 2011 4:32 am
Re: [GZDoom 3.2.1] libgomp.so.1: version `GOMP_4.0' not foun
My bad, after reading error message once again I understood that the OpenML library is installed but it's version is too old.
Unfortunately I have no VM image with Linux version affected by this issue. So I cannot provide a verified workaround at the moment.
Unfortunately I have no VM image with Linux version affected by this issue. So I cannot provide a verified workaround at the moment.
-
Rachael
- Posts: 13976
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: [GZDoom 3.2.1] libgomp.so.1: version `GOMP_4.0' not foun
All I can suggest is contacting Blzut3 about this. He's the official package maintainer and also the one who actually signs those packages, making them official (at least inasfar as Ubuntu allows them to be official when using a custom repo).
-
e1337sheep
- Posts: 1
- Joined: Fri Nov 24, 2017 9:25 am
Re: [GZDoom 3.2.1] libgomp.so.1: version `GOMP_4.0' not foun
NOTE: I thought I had originally posted this as a logged in user, but realised I'd forgotten to log in. Sorry for the duplicate post, I'd delete it if I could...
After reading too many StackOverflow answers, I came across the possible issue, and a solution that worked for me. GOMP 4.0 was included with GCC 4.9; it seems our version of Ubuntu/Mint uses GCC 4.8, which uses a previous version of GOMP, which is causing the error. So, we need to install GCC 4.9, and make sure the OS uses it.
This link has the steps I used to do that.
https://askubuntu.com/questions/466651/ ... -on-ubuntu
Super short version, open a terminal, and:
Just in case you need 4.8 for anything:
And use:
to check version and switch between them.
Of course, this is an "at your own risk" situation, but I hope it helps
After reading too many StackOverflow answers, I came across the possible issue, and a solution that worked for me. GOMP 4.0 was included with GCC 4.9; it seems our version of Ubuntu/Mint uses GCC 4.8, which uses a previous version of GOMP, which is causing the error. So, we need to install GCC 4.9, and make sure the OS uses it.
This link has the steps I used to do that.
https://askubuntu.com/questions/466651/ ... -on-ubuntu
Super short version, open a terminal, and:
Code: Select all
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-4.9 g++-4.9
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.9
Code: Select all
sudo apt-get install gcc-4.8 g++-4.8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.8
Code: Select all
sudo update-alternatives --config gcc
Of course, this is an "at your own risk" situation, but I hope it helps
-
Guest
Re: [GZDoom 3.2.1] libgomp.so.1: version `GOMP_4.0' not foun
Hello, I solved the problem by removing GZDoom and from https://zdoom.org/files/gzdoom/bin/ I downloaded the 3.1.0 release and installed it. To prevent GZDoom to be updated, I removed the http://debian.drdteam.org/ package repository.
-
Rachael
- Posts: 13976
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: [GZDoom 3.2.1] libgomp.so.1: version `GOMP_4.0' not foun
What you are doing is unsupported and discouraged.
I am not going to say you can't do it - because you are free to do so - but we are not going to accept bug reports for an old release, we are not going to help you get an old release working if it breaks, and the old release has two major security flaws that have recently been patched.
You are completely on your own.
I am not going to say you can't do it - because you are free to do so - but we are not going to accept bug reports for an old release, we are not going to help you get an old release working if it breaks, and the old release has two major security flaws that have recently been patched.
You are completely on your own.