You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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.
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
.Here is my installation commands
Beside this, the following errors appeared during compilation
The text was updated successfully, but these errors were encountered: