You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure to have installed the above MinGW packages.
Create a conanfile.txt in an empty directory, and make the contents of said file this:
[requires]
boost/1.86.0
[generators]
PkgConfigDeps
MesonToolchain # i have no idea if these are necessary for an empty project
Install the conan dependencies:
mkdir build
cd build
conan install .. --build=missing --profile=windows
It should show the error message above. With Clang it fails for different reasons.
Boost self identifies as using GCC rather then Clang, so don't worry about the default profile using a different compiler.
The text was updated successfully, but these errors were encountered:
Describe the bug
Environment details: Arch Linux x86_64, Mingw GCC-14 (sourced from the Arch repositories), x86_64, libstdc++11
Default profile
Windows profile
Boost has a problem with finding the proper windres, so I made it run a script called
windres
(which I had placed in /usr/bin)The error log:
I have no idea if I've put this in the wrong place, but I am a little desperate right now.
The file "libadvapi32.a" does exist, at
/usr/x86_64-w64-mingw32/lib/libadvapi32.a
. I have installed the packages:mingw-w64-binutils
mingw-w64-crt
mingw-w64-gcc
mingw-w64-headers
mingw-w64-winpthreads
How to reproduce it
Make sure to have installed the above MinGW packages.
Create a conanfile.txt in an empty directory, and make the contents of said file this:
Install the conan dependencies:
It should show the error message above. With Clang it fails for different reasons.
Boost self identifies as using GCC rather then Clang, so don't worry about the default profile using a different compiler.
The text was updated successfully, but these errors were encountered: