Lots of _CL_xxxxxxxxx
files in %TMP% do not get deleted after port build?
#35525
-
Has anyone else discovered the %TMP% directory has many A fresh install of vcpkg has left 2631 files behind. Not a big issue, but a nuisance to clean up. Some are quite large some real small. I am used to them being there while vcpkg builds/compiles/installs the ports but not when all ports complete successfully. Examples showing file content as follows:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I found the issue accidently working another issue, #36103 (comment) with jasper and it turns out it is a bug with the compiler being used at the time, as working the #36103 issue I created an overlay triplet specifying a specific older version of the compiler by adding |
Beta Was this translation helpful? Give feedback.
I found the issue accidently working another issue, #36103 (comment) with jasper and it turns out it is a bug with the compiler being used at the time, as working the #36103 issue I created an overlay triplet specifying a specific older version of the compiler by adding
set(VCPKG_PLATFORM_TOOLSET_VERSION "14.37.32822")
to the triplet file and like magic all the_CL_*
files were being removed after all the compiles for the port was complete. To test I commented theset(VCPKG_PLATFORM_TOOLSET_VERSION "14.37.32822")
back out and the_CL_*
files returned.So I went to the MSVC forums and noticed this issue had been annotated by users many times going all the way back to VS2015 and the issue w…