Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • D dynamorio
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1,467
    • Issues 1,467
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 44
    • Merge requests 44
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • DynamoRIO
  • dynamorio
  • Issues
  • #3805
Closed
Open
Issue created Aug 30, 2019 by Administrator@rootContributor

Add VS2019 support

Created by: baptistapedro

````find_program(CMAKE_ASM_COMPILER ml64.exe HINTS "${cl_path}" DOC "path to assembler")
if ("${CMAKE_GENERATOR}" MATCHES "NMake Makefiles")
  set(CMAKE_ASM_COMPILER "ml64.exe")
endif()

else (X64) find_program(CMAKE_ASM_COMPILER ml.exe HINTS "${cl_path}" DOC "path to assembler") if ("${CMAKE_GENERATOR}" MATCHES "NMake Makefiles") set(CMAKE_ASM_COMPILER "ml.exe") endif() endif (X64) if (NOT CMAKE_ASM_COMPILER) message(FATAL_ERROR "assembler not found: required to build") endif (NOT CMAKE_ASM_COMPILER) message(STATUS "Found assembler:````

I am doing cmake -G"Visual Studio 16 Win64" .. and I happen to have an error on the exact line if (NOT CMAKE_ASM_COMPILER) message(FATAL_ERROR "assembler not found: required to build")

I am not sure why it doesnt find the compiler since I'm using the VS with all Build Tools installed, plus the cmake should do it by yourself?

Assignee
Assign to
Time tracking