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
Currently, the esp-idf-sys library, which is used to compile this clang-sys library, fails to compile.
(esp-rs/espup#440)
When compiling esp-idf-sys, the executable files required to compile the esp microcontroller are downloaded and the directory is added to the PATH environment variable.
The dll file in this downloaded conflicts with the dll file that libclang.dll depends on, causing libclang.dll to fail to load.
This error can be resolved by prioritizing loading dll in the directory containing libclang.dll.
※ This is not a problem for non-Windows users because they do not use the PATH environment variable to search for libraries.
The text was updated successfully, but these errors were encountered:
taks
added a commit
to taks/clang-sys
that referenced
this issue
Jul 31, 2024
Currently, the
esp-idf-sys
library, which is used to compile thisclang-sys
library, fails to compile.(esp-rs/espup#440)
When compiling
esp-idf-sys
, the executable files required to compile the esp microcontroller are downloaded and the directory is added to thePATH
environment variable.The dll file in this downloaded conflicts with the dll file that libclang.dll depends on, causing libclang.dll to fail to load.
This error can be resolved by prioritizing loading dll in the directory containing
libclang.dll
.※ This is not a problem for non-Windows users because they do not use the PATH environment variable to search for libraries.
The text was updated successfully, but these errors were encountered: