Camila_99$$
Camila_99$$
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
Hi marvee ! Have you tried using pkg-config to auto-detect library paths? It might help avoid the conflicts between 32-bit and 64-bit Boost libraries:
g++ program.cpp -m32 $(pkg-config --cflags --libs boost_program_options) -o compiled/program.out
g++ program.cpp -m32 $(pkg-config --cflags --libs boost_program_options) -o compiled/program.out
7 replies