aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2022-03-09 12:34:04 -0500
committerXavier Claessens <xclaesse@gmail.com>2022-10-24 11:06:57 +0200
commitd29ef2b128c651fa83f1d923290d66cc8eb63223 (patch)
tree73aae2279a382fc719d0bb8a0e9b40740922a8e0 /docs/markdown/snippets
parent01ee14133906e4afa55cdc52eeb1c9e78bbeced5 (diff)
downloadmeson-d29ef2b128c651fa83f1d923290d66cc8eb63223.zip
meson-d29ef2b128c651fa83f1d923290d66cc8eb63223.tar.gz
meson-d29ef2b128c651fa83f1d923290d66cc8eb63223.tar.bz2
Add yasm as fallback for nasm language
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r--docs/markdown/snippets/asm.md5
1 files changed, 1 insertions, 4 deletions
diff --git a/docs/markdown/snippets/asm.md b/docs/markdown/snippets/asm.md
index be8b0cb..a68f163 100644
--- a/docs/markdown/snippets/asm.md
+++ b/docs/markdown/snippets/asm.md
@@ -2,10 +2,7 @@
When the `nasm` language is added to the project, `.asm` files are
automatically compiled with NASM. This is only supported for x86 and x86_64 CPU
-family.
-
-Support for other compilers compatible with NASM language, such as YASM, could
-be added in the future.
+family. `yasm` is used as fallback if `nasm` command is not found.
Note that GNU Assembly files usually have `.s` extension and were already built
using C compiler such as GCC or CLANG.