Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fixing "crc32 tool not found" on Ubuntu

I'm trying to build spark/firmware on Ubuntu, but when running make I only get the following error message

../build/common-tools.mk:26: *** "crc32 tool is not found".  Stop.

I tried using

apt-get install crc32

but there is no such package. How can I install the crc32 tool?

like image 381
Uli Köhler Avatar asked Mar 01 '17 02:03

Uli Köhler


1 Answers

Use

sudo apt-get install libarchive-zip-perl

I found the correct package by using apt-file:

sudo apt-file update && sudo apt-file search /usr/bin/crc32
like image 142
Uli Köhler Avatar answered Nov 12 '22 02:11

Uli Köhler