Enthernet Code
Enthernet Code
DIIDevHeads IoT Integration Server
Created by Marvee Amasi on 9/27/2024 in #middleware-and-os
Why will there be issues while trying to build the Boot to Gecko (B2G) project on my x86-64 Ubuntu
@Marvee Amasi 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
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.
3 replies