Skip to content
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

Installation on Ubuntu 16.04 #5

Closed
domluna opened this issue Jun 8, 2016 · 1 comment
Closed

Installation on Ubuntu 16.04 #5

domluna opened this issue Jun 8, 2016 · 1 comment

Comments

@domluna
Copy link

domluna commented Jun 8, 2016

Following up a discussion from Gitter, installation on Ubuntu 16.04 doesn't work. The issue appears to be with the liblzma version.

More details have been discussed in the upstream repo at Farama-Foundation/ViZDoom#75. I think we should keep this here for reference until it's fixed upstream.

@domluna
Copy link
Author

domluna commented Jun 13, 2016

Update from the discussion upstream, the issue is solved by changing the default linker from ld to ld.gold.

Credits go to @vmonaco

Check which linker you're using:

ls -l /usr/bin/ld

Install gold and set as default:

apt-get install binutils-gold
update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20
update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10

Switch between gold and GNU linker:

update-alternatives --config ld

See also here:
hashicorp/vagrant#5118

@domluna domluna closed this as completed Jun 14, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant