boost icon indicating copy to clipboard operation
boost copied to clipboard

Super-project for modularized Boost

Results 173 boost issues
Sort by recently updated
recently updated
newest added

Hello, Wanted to bring to the attention of the people that manage the Boost website - multiple source code version downloads are returning 403 forbidden error when trying to download....

project-config.jam generated is missing the path to the interpreter, and therefore b2 will fail to build the python3 libraries. Simplified example below. Running: ``` ./bootstrap.sh --with-python=/Library/Frameworks/Python.framework/Versions/3.10/bin/python3 ``` will generate the...

When setting the command line arch=combined on a macbook pro m1 max, the library generated is x86_64 only. ```vinayakr@Vinayaks-MacBook-Pro boost % b2 --with-regex --with-thread --with-chrono architecture=combined address-model=64 cxxflags="-arch x86_64 -arch...

There is boost.png in the root of repository, but it is png and has very low resolution, also, it doesn't match from logo from the site. I found better image...

Hi, I was trying to build boost with cmake, but I had several errors of the form: ``` CMake Error at libs/date_time/CMakeLists.txt:10 (add_library): Target "boost_date_time" links to target "Boost::tuple" but...

Hello, We would like to compile code with msvc and warning [C4002](https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-1-c4002?view=msvc-160) as error. To do so, we set the compiler flag /we4002. When we include some boost header, the...

e: /Users/fei/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin /Users/fei/Boost-for-Android/boost_1_77_0/tools/build/src/util/numbers.jam:23: in numbers.check from module numbers error: x8664 in x8664 error: is not a number

In line 15, bootstrap.bat `call .\build.bat` make some small changes as below `call .\build.bat %1` Now you can just compile b2.exe in PowerShell like below `.\bootstrap.bat gcc` and build &...

Python include path was not detected earlier. This solution should fix it.

The following code used to give correct result (1.53) but now (1.77) throws exception: ``` boost::math::non_central_chi_squared_distribution nchi2(0.001, 100); double res = quantile(nchi2, 0.00000000000003659); ``` // use to return 5.8758639130601491, now...