microsoft / vcpkg

C++ Library Manager for Windows, Linux, and MacOS
MIT License
22.32k stars 6.19k forks source link

vcpkg install error #39761

Closed fldx closed 1 week ago

fldx commented 1 week ago

Describe the bug A clear and concise description of what the bug is.

Environment

To Reproduce Steps to reproduce the behavior:

  1. ./vcpkg install blend2d
  2. See error Repro code when

Expected behavior A clear and concise description of what you expected to happen.

Failure logs -(please attached failure logs) image

Additional context Add any other context about the problem here.

WangWeiLin-MV commented 1 week ago

Please make sure that the compiler was installed correctly, or the compiler executable is in environment variable PATH.

dg0yt commented 1 week ago

Remove msys (/usr/bin) CMake from your PATH. It is POSIX subsystem, with POSIX path separators only.

fldx commented 1 week ago

Remove msys (/usr/bin) CMake from your PATH. It is POSIX subsystem, with POSIX path separators only.

Thank you