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

Screeps install stuck at CXX(target) Release/obj.target/isolated_vm/src/module_handle.o #89

Closed
RubenNijhuis opened this issue Sep 22, 2018 · 3 comments

Comments

@RubenNijhuis
Copy link

RubenNijhuis commented Sep 22, 2018

Hi, i tried installing screeps on my Raspberry Pi 3b+ but everytime i try it doesn't get past this:
screen shot 2018-09-22 at 12 21 49

I installed it using
npm install screeps

I am on node version v8.12.0
NPM is on version 6.4.1
Python is on 2.7

Excpected output

For the installation to finish

?? Is there something i am missing that i misread on the docs?

EDIT::
I installed/updated node-gyp maybe it will fix it, still trying

@LeonMatthes
Copy link

I actually had a similar issue.
You don't say that here, but when I tried installing screeps on my PI 3b+ itcaused my PI to completely freeze up right around module_handle.o I had to replug it to get it back up and running.
This was actually caused by the compiler running out of RAM. You can see your RAM usage during compilation using htop:

sudo apt-get install htop
htop

if you also notice that you are running out of RAM, the easiest way to fix it is to increase the swap file size (the amount of disk space to use, when the RAM is full) I increased my swap file to 2GB and now screeps is compiling fine (even though it still takes quite some time, swap files are slow).
I don't know the exact command to do this of the top of my head, but a quick google search should help.

@troymaclure
Copy link

troymaclure commented Apr 20, 2019

I had the same issue on a vps with only 2GB memory.

To create a swap file and activate it, do as follow as root (or sudo) user :
dd if=/dev/zero of=/swapper bs=1M count=2048
mkswap /swapper
swapon /swapper

To check if the swap file is activated :
free -m

Then, as screeps user, you can :
npm install screeps

After completion of the install process
you can delete your swap partition as root (or sudo) user :
swapoff /swapper
rm /swapper

Sorry, something went wrong.

@o4kapuk
Copy link
Contributor

o4kapuk commented May 3, 2019

That sounds like an isolated-vm issue, are you able to install it alone? If it doesn't install either, please create the issue at ivm module page.

Sorry, something went wrong.

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

4 participants