I'm trying to install Boost on my macbook, the problem i'm getting is that there is no clear/outdated way of install boost with GCC instead Clang. I installed GCC-12 using homebrew, and use that for my C++ code projects, and changed the symlink from Clang GCC to Homebrew GCC.
Installing boost with homebrew seemed easy, but there is no way to define which GCC it uses. So the install defaults to Clang, making my GCC project not work with Boost. I also tried compiling it with B2, but the tutorials out there are old and deprecated.
Using brew with the -cc=gcc=12
does not work either and results in error: boost: no bottle available!
I'd love to make this library included standard in GCC so I can use with my makefiles for example too, since -isystem /usr/local/Cellar/boost/1.80.0/include
does work.
If anybody knows, thanks!