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
{{ message }}
This repository has been archived by the owner on Feb 4, 2020. It is now read-only.
There are problems with ASM identification, using clcache.
cmake version 3.15.5
clcache.py v4.2.0-dev
Python 3.8.1
project(${PROJECT_NAME} LANGUAGES C CXX ASM VERSION ${PROJECT_VERSION})
-- The ASM compiler identification is unknown
-- Found assembler: C:/Python381/Scripts/clcache.exe
-- Warning: Did not find file Compiler/-ASM
The workaround would be:
project(${PROJECT_NAME} LANGUAGES ASM C CXX VERSION ${PROJECT_VERSION})
-- The ASM compiler identification is MSVC
-- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe
But i am not sure either using clcache the ASM compiler should be found as C:/Python381/Scripts/clcache.exe or C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There are problems with ASM identification, using clcache.
project(${PROJECT_NAME} LANGUAGES C CXX ASM VERSION ${PROJECT_VERSION})
The workaround would be:
project(${PROJECT_NAME} LANGUAGES ASM C CXX VERSION ${PROJECT_VERSION})
But i am not sure either using clcache the ASM compiler should be found as C:/Python381/Scripts/clcache.exe or C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe
The text was updated successfully, but these errors were encountered: