cmake/Help/envvar/ASM_DIALECT.rst

29 lines
899 B
ReStructuredText
Raw Normal View History

2018-01-26 17:06:56 +01:00
ASM<DIALECT>
------------
2019-11-11 23:01:05 +01:00
.. include:: ENV_VAR.txt
2018-01-26 17:06:56 +01:00
Preferred executable for compiling a specific dialect of assembly language
2023-05-23 16:38:00 +02:00
files. ``ASM<DIALECT>`` can be one of:
* ``ASM``
* ``ASM_NASM`` (Netwide Assembler)
* ``ASM_MASM`` (Microsoft Assembler)
* ``ASM_MARMASM`` (Microsoft ARM Assembler)
* ``ASM-ATT`` (Assembler AT&T)
2019-11-11 23:01:05 +01:00
Will only be used by CMake on the first configuration to determine
2018-01-26 17:06:56 +01:00
``ASM<DIALECT>`` compiler, after which the value for ``ASM<DIALECT>`` is stored
in the cache as
:variable:`CMAKE_ASM<DIALECT>_COMPILER <CMAKE_<LANG>_COMPILER>`. For subsequent
configuration runs, the environment variable will be ignored in favor of
:variable:`CMAKE_ASM<DIALECT>_COMPILER <CMAKE_<LANG>_COMPILER>`.
2021-09-14 00:13:48 +02:00
.. note::
Options that are required to make the compiler work correctly can be included;
they can not be changed.
.. code-block:: console
$ export ASM="custom-compiler --arg1 --arg2"