mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Use the filename suffix .S instead of .s for assembler files
so that the preprocessor removes the /* */ style comments, which are not supported by some non-GNU assemblers (Solaris) that otherwise work with this code.
This commit is contained in:
parent
ec1c82b2e8
commit
44b333d461
3 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ libcheck_la_CPPFLAGS = \
|
|||
if COND_CHECK_CRC32
|
||||
|
||||
if COND_ASM_X86
|
||||
libcheck_la_SOURCES += crc32_x86.s
|
||||
libcheck_la_SOURCES += crc32_x86.S
|
||||
else
|
||||
libcheck_la_SOURCES += crc32.c
|
||||
endif
|
||||
|
@ -40,7 +40,7 @@ endif
|
|||
if COND_CHECK_CRC64
|
||||
|
||||
if COND_ASM_X86
|
||||
libcheck_la_SOURCES += crc64_x86.s
|
||||
libcheck_la_SOURCES += crc64_x86.S
|
||||
else
|
||||
libcheck_la_SOURCES += crc64.c
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue