wafa_ath
DIIDevHeads IoT Integration Server
•Created by Marvee Amasi on 8/30/2024 in #middleware-and-os
Issues with Boost Library for x86_32 Architecture on Ubuntu 22.04 – How to Manage Conflicts with x86
U can start with
1. Install multilib support:
sudo apt-get install gcc-multilib g++-multilib'
2. Install both 32-bit and 64-bit Boost libraries:
```
sudo apt-get install libboost-program-options-dev:amd64
sudo apt-get install libboost-program-options-dev:i386
```
3. When compiling, specify the library path explicitly:
- For 64-bit:
-L/usr/lib/x86_64-linux-gnu -lboost_program_options
- For 32-bit:
-L/usr/lib/i386-linux-gnu -lboost_program_options`7 replies