Closed tjwrona closed 2 months ago
I created a conanfile.txt
that does nothing more than require icu/68.2
.
conanfile.txt:
[requires]
icu/68.2
Then I did a conan install . --build
to test it out. I don't think it used the same "profile" settings that the cmake-conan
run automatically detected because it failed for a different reason, but this build also failed. I have attached the log (The conan profile settings are listed at the top)
I created a
conanfile.txt
that does nothing more than requireicu/68.2
.conanfile.txt:
[requires] icu/68.2
Then I did a
conan install . --build
to test it out. I don't think it used the same "profile" settings that thecmake-conan
run automatically detected because it failed for a different reason, but this build also failed. I have attached the log (The conan profile settings are listed at the top)
msys2 fails to build (actually it seems to fail to access several urls). There is no information about icu in this log. Try to build icu only: conan install icu/68.2@ -b icu
It builds on my computer with the same profile, except that cppstd=17
is not set in my profile and I force CC/CXX/LD to avoid conflicts with MinGW:
msys2 fails to build (actually it seems to fail to access several urls).
You can try the new msys2 version. https://github.com/conan-io/conan-center-index/pull/4286
Hi there!
I'm closing this issue as icu/68.2
is no longer supported by CCI.
If problem persists in newer issues, do not hesitate create a new ticket. Happy coding 🐸
I am trying to use the ICU library to add unicode support to one of my projects but I get an error when conan install tries to compile it.
Package and Environment Details (include every applicable attribute)
Conan profile (output of
conan profile show default
orconan profile show <profile>
if custom profile is in use)I am using the
cmake-conan
library to automatically detect the compiler info so I'm not sure how to get the exact profile info used. https://github.com/conan-io/cmake-conanAt the start of the run it does spit out this information though that might be what you are looking for:
Steps to reproduce (Include if Applicable)
ICU fails near the end of the build during the
conan install
stepThis issue is likely related to ICU not working with Boost: https://github.com/conan-io/conan-center-index/issues/4297