ld-musl-config command not found

In this troubleshooting guide we learn how to fix ld-musl-config command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

ld-musl-config: command not found

or when using sudo you get the following error message

sudo: ld-musl-config: command not found

Solutions to ld-musl-config: command not found

How To Fix ld-musl-config: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ld-musl-config is provided by musl package.

musl is:

musl is lightweight, fast, simple, free and strives to be correct in the sense of standards-conformance and safety.

This package contains the shared objects

To fix this problem, we can install more using the command below.

sudo apt-get -y install musl

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install musl.

sudo apt -y install musl

Or if you have aptitude installed you can use the following command.

sudo aptitude install musl

Summary

In this tutorial we learn how to fix ld-musl-config command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.