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

Error on Ubuntu 22.04 #958

Open
bdmapman opened this issue Nov 16, 2022 · 1 comment
Open

Error on Ubuntu 22.04 #958

bdmapman opened this issue Nov 16, 2022 · 1 comment

Comments

@bdmapman
Copy link

I am trying to install Tippecanoe on Ubuntu 22.04 in a DigitalOcean droplet with 1 CPU and 2 GB RAM. It is returning the following errors after make -j.

g++: fatal error: Killed signal terminated program cc1plus
compilation terminated.
make: *** [Makefile:74: main.o] Error 1
make: *** Waiting for unfinished jobs....
g++: fatal error: Killed signal terminated program cc1plus
compilation terminated.
make: *** [Makefile:74: tile.o] Error 1

Here is my installation commands

sudo apt-get install build-essential libsqlite3-dev zlib1g-dev -y
git clone https://github.com/mapbox/tippecanoe.git
cd tippecanoe
make -j   #The problem is happening here
sudo make install

Beside this, the following errors appeared during compilation

CleanShot 2022-11-16 at 11 15 32@2x

@e-n-f
Copy link
Contributor

e-n-f commented Nov 17, 2022

The warnings were also reported in #957 and I will fix them in https://github.com/felt/tippecanoe.

The g++: fatal error: Killed suggests that your system is running out memory trying to run the compiler, possibly because make -j is trying to run too many jobs at once. Try make without the -j.

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

2 participants