From 4fedf19f41a99e0abd5ed18916e42e12e420c6bf Mon Sep 17 00:00:00 2001 From: Renan Lavarec Date: Mon, 20 Mar 2023 14:06:06 +0100 Subject: asm: Add sx extension docs: gcc https://gcc.gnu.org/onlinedocs/gcc/Overall-Options.html scons: https://scons.org/doc/3.0.5/HTML/scons-user/apb.html .S Windows: assembly language file ARM: CodeSourcery Sourcery Lite .sx assembly language file + C pre-processor POSIX: assembly language file + C pre-processor --- mesonbuild/compilers/mixins/compcert.py | 1 + 1 file changed, 1 insertion(+) (limited to 'mesonbuild/compilers/mixins/compcert.py') diff --git a/mesonbuild/compilers/mixins/compcert.py b/mesonbuild/compilers/mixins/compcert.py index a0394a9..d9c21a8 100644 --- a/mesonbuild/compilers/mixins/compcert.py +++ b/mesonbuild/compilers/mixins/compcert.py @@ -68,6 +68,7 @@ class CompCertCompiler(Compiler): def __init__(self) -> None: # Assembly self.can_compile_suffixes.add('s') + self.can_compile_suffixes.add('sx') default_warn_args = [] # type: T.List[str] self.warn_args = {'0': [], '1': default_warn_args, -- cgit v1.1