CMakeDetermineASM-ATTCompiler.cmake 394 B

12345678910
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. # determine the compiler to use for ASM using AT&T syntax, e.g. GNU as
  4. set(ASM_DIALECT "-ATT")
  5. set(CMAKE_ASM${ASM_DIALECT}_COMPILER_LIST ${_CMAKE_TOOLCHAIN_PREFIX}gas ${_CMAKE_TOOLCHAIN_PREFIX}as)
  6. include(CMakeDetermineASMCompiler)
  7. set(ASM_DIALECT)