Become a leader in the IoT community!
New DevHeads get a 320-point leaderboard boost when joining the DevHeads IoT Integration Community. In addition to learning and advising, active community leaders are rewarded with community recognition and free tech stuff. Start your Legendary Collaboration now!
@marveeamasi The issue you’re facing is likely due to a mismatch between the 32-bit toolchain you’re using and the 64-bit libraries installed on your system. The build process is trying to link against `librt`, but it requires the 32-bit version, while your system likely has only the 64-bit version available.
To fix this, you need to install the 32-bit version of `librt` and its dependencies. You can do this by running:
“`
sudo apt-get install libc6:i386 lib32gcc1 lib32stdc++6 lib32rt1
“`
Afterward, ensure the 32-bit libraries are in the linker’s search path and then retry the build. This should resolve the issue and allow the build to proceed successfully.
It did ✅
CONTRIBUTE TO THIS THREAD