1ASM<DIALECT>FLAGS 2----------------- 3 4.. include:: ENV_VAR.txt 5 6Default compilation flags to be used when compiling a specific dialect of an 7assembly language. ``ASM<DIALECT>FLAGS`` can be ``ASMFLAGS``, ``ASM_NASMFLAGS``, 8``ASM_MASMFLAGS`` or ``ASM-ATTFLAGS``. Will only be used by CMake on the 9first configuration to determine ``ASM_<DIALECT>`` default compilation 10flags, after which the value for ``ASM<DIALECT>FLAGS`` is stored in the cache 11as ``CMAKE_ASM<DIALECT>_FLAGS <CMAKE_<LANG>_FLAGS>``. For any configuration 12run (including the first), the environment variable will be ignored, if the 13``CMAKE_ASM<DIALECT>_FLAGS <CMAKE_<LANG>_FLAGS>`` variable is defined. 14 15See also :variable:`CMAKE_ASM<DIALECT>_FLAGS_INIT <CMAKE_<LANG>_FLAGS_INIT>`. 16