Replies: 4 comments 2 replies
-
ABI info which contains compiler version, SDK version etc. |
Beta Was this translation helpful? Give feedback.
-
In a nutshell, fingerprinting the compiler allows |
Beta Was this translation helpful? Give feedback.
-
Is there a way to make this faster? It takes 20-30 seconds on my machine (WSL), but I saw it taking less than a second on someone else's computer (Mac), while the rest of the compilation was about the same speed |
Beta Was this translation helpful? Give feedback.
-
I have exactly the same problem on GitHub self-hosted runner (Windows), it lasts 100 seconds to finish
I did |
Beta Was this translation helpful? Give feedback.
-
Hi everyone!
I have a CMake project which is using vcpkg with manifest mode (i.e. with
vcpkg.json
).Each time I need to re run CMake (for example because I edited
CMakeLists.txt
to add some new source files),vcpkg install
is automatically invoked. Since my libraries are all already installed, it won't rebuild my dependencies, so, theoretically, it shouldn't take too much time.But it actually takes a lot! Each time I re run CMake,
vcpkg install
takes like 10 seconds to complete. I noticed that most of time it's "detecting compiler hash", what does that actually do? Is there any way to speed it up?The following CMake output shows vcpkg is taking 9.109 s to install:
Beta Was this translation helpful? Give feedback.
All reactions